1
0
mirror of synced 2025-12-19 18:10:59 -05:00

Import statements: #src/ → @/ and remove file extensions (#56560)

This commit is contained in:
Kevin Heis
2025-07-09 13:50:50 -07:00
committed by GitHub
parent e8cc2f7a2f
commit fb6844eef0
364 changed files with 891 additions and 920 deletions

View File

@@ -1,6 +1,6 @@
import path from 'path'
import { readCompressedJsonFileFallback } from '@/frame/lib/read-json-file.js'
import { readCompressedJsonFileFallback } from '@/frame/lib/read-json-file'
import { getOpenApiVersion } from '@/versions/lib/all-versions'
import type {
AuditLogEventT,

View File

@@ -12,13 +12,9 @@ import { readFile, writeFile } from 'fs/promises'
import { mkdirp } from 'mkdirp'
import path from 'path'
import { filterByAllowlistValues, filterAndUpdateGhesDataByAllowlistValues } from '../lib/index.js'
import { getContents, getCommitSha } from '@/workflows/git-utils.js'
import {
latest,
latestStable,
releaseCandidate,
} from '@/versions/lib/enterprise-server-releases.js'
import { filterByAllowlistValues, filterAndUpdateGhesDataByAllowlistValues } from '../lib/index'
import { getContents, getCommitSha } from '@/workflows/git-utils'
import { latest, latestStable, releaseCandidate } from '@/versions/lib/enterprise-server-releases'
import type { AuditLogEventT, VersionedAuditLogData } from '../types'
if (!process.env.GITHUB_TOKEN) {

View File

@@ -1,6 +1,6 @@
import { describe, expect, test, vi } from 'vitest'
import { getDOM } from '@/tests/helpers/e2etest.js'
import { getDOM } from '@/tests/helpers/e2etest'
import { allVersions } from '@/versions/lib/all-versions'
import { getCategorizedAuditLogEvents } from '../lib'