|
|
import nodePath from 'path' |
|
|
import type { Span } from '../../../trace' |
|
|
import isError from '../../../lib/is-error' |
|
|
import { nodeFileTrace } from 'next/dist/compiled/@vercel/nft' |
|
|
import type { NodeFileTraceReasons } from 'next/dist/compiled/@vercel/nft' |
|
|
import { |
|
|
CLIENT_REFERENCE_MANIFEST, |
|
|
TRACE_OUTPUT_VERSION, |
|
|
type CompilerNameValues, |
|
|
} from '../../../shared/lib/constants' |
|
|
import { webpack, sources } from 'next/dist/compiled/webpack/webpack' |
|
|
import { |
|
|
NODE_ESM_RESOLVE_OPTIONS, |
|
|
NODE_RESOLVE_OPTIONS, |
|
|
} from '../../webpack-config' |
|
|
import type { NextConfigComplete } from '../../../server/config-shared' |
|
|
import picomatch from 'next/dist/compiled/picomatch' |
|
|
import { getModuleBuildInfo } from '../loaders/get-module-build-info' |
|
|
import { getPageFilePath } from '../../entries' |
|
|
import { resolveExternal } from '../../handle-externals' |
|
|
import swcLoader, { type SWCLoaderOptions } from '../loaders/next-swc-loader' |
|
|
import { isMetadataRouteFile } from '../../../lib/metadata/is-metadata-route' |
|
|
import { getCompilationSpan } from '../utils' |
|
|
import { isClientComponentEntryModule } from '../loaders/utils' |
|
|
|
|
|
const PLUGIN_NAME = 'TraceEntryPointsPlugin' |
|
|
export const TRACE_IGNORES = [ |
|
|
'**/*/next/dist/server/next.js', |
|
|
'**/*/next/dist/bin/next', |
|
|
] |
|
|
|
|
|
const NOT_TRACEABLE = [ |
|
|
'.wasm', |
|
|
'.png', |
|
|
'.jpg', |
|
|
'.jpeg', |
|
|
'.gif', |
|
|
'.webp', |
|
|
'.avif', |
|
|
'.ico', |
|
|
'.bmp', |
|
|
'.svg', |
|
|
] |
|
|
|
|
|
function getModuleFromDependency( |
|
|
compilation: any, |
|
|
dep: any |
|
|
): webpack.Module & { resource?: string; request?: string } { |
|
|
return compilation.moduleGraph.getModule(dep) |
|
|
} |
|
|
|
|
|
export function getFilesMapFromReasons( |
|
|
fileList: Set<string>, |
|
|
reasons: NodeFileTraceReasons, |
|
|
ignoreFn?: (file: string, parent?: string) => Boolean |
|
|
) { |
|
|
|
|
|
|
|
|
|
|
|
const parentFilesMap = new Map<string, Map<string, { ignored: boolean }>>() |
|
|
|
|
|
function propagateToParents( |
|
|
parents: Set<string>, |
|
|
file: string, |
|
|
seen = new Set<string>() |
|
|
) { |
|
|
for (const parent of parents || []) { |
|
|
if (!seen.has(parent)) { |
|
|
seen.add(parent) |
|
|
let parentFiles = parentFilesMap.get(parent) |
|
|
|
|
|
if (!parentFiles) { |
|
|
parentFiles = new Map() |
|
|
parentFilesMap.set(parent, parentFiles) |
|
|
} |
|
|
const ignored = Boolean(ignoreFn?.(file, parent)) |
|
|
parentFiles.set(file, { ignored }) |
|
|
|
|
|
const parentReason = reasons.get(parent) |
|
|
|
|
|
if (parentReason?.parents) { |
|
|
propagateToParents(parentReason.parents, file, seen) |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
for (const file of fileList!) { |
|
|
const reason = reasons!.get(file) |
|
|
const isInitial = |
|
|
reason?.type.length === 1 && reason.type.includes('initial') |
|
|
|
|
|
if ( |
|
|
!reason || |
|
|
!reason.parents || |
|
|
(isInitial && reason.parents.size === 0) |
|
|
) { |
|
|
continue |
|
|
} |
|
|
propagateToParents(reason.parents, file) |
|
|
} |
|
|
return parentFilesMap |
|
|
} |
|
|
|
|
|
export interface TurbotraceAction { |
|
|
action: 'print' | 'annotate' |
|
|
input: string[] |
|
|
contextDirectory: string |
|
|
processCwd: string |
|
|
showAll?: boolean |
|
|
memoryLimit?: number |
|
|
} |
|
|
|
|
|
export interface BuildTraceContext { |
|
|
entriesTrace?: { |
|
|
action: TurbotraceAction |
|
|
appDir: string |
|
|
outputPath: string |
|
|
depModArray: string[] |
|
|
entryNameMap: Record<string, string> |
|
|
absolutePathByEntryName: Record<string, string> |
|
|
} |
|
|
chunksTrace?: { |
|
|
action: TurbotraceAction |
|
|
outputPath: string |
|
|
entryNameFilesMap: Record<string, Array<string>> |
|
|
} |
|
|
} |
|
|
|
|
|
export class TraceEntryPointsPlugin implements webpack.WebpackPluginInstance { |
|
|
public buildTraceContext: BuildTraceContext = {} |
|
|
|
|
|
private rootDir: string |
|
|
private appDir: string | undefined |
|
|
private pagesDir: string | undefined |
|
|
private appDirEnabled?: boolean |
|
|
private tracingRoot: string |
|
|
private entryTraces: Map<string, Map<string, { bundled: boolean }>> |
|
|
private traceIgnores: string[] |
|
|
private esmExternals?: NextConfigComplete['experimental']['esmExternals'] |
|
|
private compilerType: CompilerNameValues |
|
|
private swcLoaderConfig: { |
|
|
loader: string |
|
|
options: Partial<SWCLoaderOptions> |
|
|
} |
|
|
|
|
|
constructor({ |
|
|
rootDir, |
|
|
appDir, |
|
|
pagesDir, |
|
|
compilerType, |
|
|
appDirEnabled, |
|
|
traceIgnores, |
|
|
esmExternals, |
|
|
outputFileTracingRoot, |
|
|
swcLoaderConfig, |
|
|
}: { |
|
|
rootDir: string |
|
|
compilerType: CompilerNameValues |
|
|
appDir: string | undefined |
|
|
pagesDir: string | undefined |
|
|
appDirEnabled?: boolean |
|
|
traceIgnores?: string[] |
|
|
outputFileTracingRoot?: string |
|
|
esmExternals?: NextConfigComplete['experimental']['esmExternals'] |
|
|
swcLoaderConfig: TraceEntryPointsPlugin['swcLoaderConfig'] |
|
|
}) { |
|
|
this.rootDir = rootDir |
|
|
this.appDir = appDir |
|
|
this.pagesDir = pagesDir |
|
|
this.entryTraces = new Map() |
|
|
this.esmExternals = esmExternals |
|
|
this.appDirEnabled = appDirEnabled |
|
|
this.traceIgnores = traceIgnores || [] |
|
|
this.tracingRoot = outputFileTracingRoot || rootDir |
|
|
this.compilerType = compilerType |
|
|
this.swcLoaderConfig = swcLoaderConfig |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
async createTraceAssets(compilation: webpack.Compilation, span: Span) { |
|
|
const outputPath = compilation.outputOptions.path || '' |
|
|
|
|
|
await span.traceChild('create-trace-assets').traceAsyncFn(async () => { |
|
|
const entryFilesMap = new Map<any, Set<string>>() |
|
|
const chunksToTrace = new Set<string>() |
|
|
const entryNameFilesMap = new Map<string, Array<string>>() |
|
|
|
|
|
const isTraceable = (file: string) => |
|
|
!NOT_TRACEABLE.some((suffix) => { |
|
|
return file.endsWith(suffix) |
|
|
}) |
|
|
|
|
|
for (const entrypoint of compilation.entrypoints.values()) { |
|
|
const entryFiles = new Set<string>() |
|
|
|
|
|
for (const chunk of entrypoint |
|
|
.getEntrypointChunk() |
|
|
.getAllReferencedChunks()) { |
|
|
for (const file of chunk.files) { |
|
|
if (isTraceable(file)) { |
|
|
const filePath = nodePath.join(outputPath, file) |
|
|
chunksToTrace.add(filePath) |
|
|
entryFiles.add(filePath) |
|
|
} |
|
|
} |
|
|
for (const file of chunk.auxiliaryFiles) { |
|
|
if (isTraceable(file)) { |
|
|
const filePath = nodePath.join(outputPath, file) |
|
|
chunksToTrace.add(filePath) |
|
|
entryFiles.add(filePath) |
|
|
} |
|
|
} |
|
|
} |
|
|
entryFilesMap.set(entrypoint, entryFiles) |
|
|
entryNameFilesMap.set(entrypoint.name || '', [...entryFiles]) |
|
|
} |
|
|
|
|
|
|
|
|
this.buildTraceContext.chunksTrace = { |
|
|
action: { |
|
|
action: 'annotate', |
|
|
input: [...chunksToTrace], |
|
|
contextDirectory: this.tracingRoot, |
|
|
processCwd: this.rootDir, |
|
|
}, |
|
|
outputPath, |
|
|
entryNameFilesMap: Object.fromEntries(entryNameFilesMap), |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
const outputPrefix = this.compilerType === 'server' ? '../' : '' |
|
|
|
|
|
for (const [entrypoint, entryFiles] of entryFilesMap) { |
|
|
const traceOutputName = `${outputPrefix}${entrypoint.name}.js.nft.json` |
|
|
const traceOutputPath = nodePath.dirname( |
|
|
nodePath.join(outputPath, traceOutputName) |
|
|
) |
|
|
|
|
|
|
|
|
entryFiles.delete( |
|
|
nodePath.join(outputPath, `${outputPrefix}${entrypoint.name}.js`) |
|
|
) |
|
|
|
|
|
if (entrypoint.name.startsWith('app/') && this.appDir) { |
|
|
const appDirRelativeEntryPath = |
|
|
this.buildTraceContext.entriesTrace?.absolutePathByEntryName[ |
|
|
entrypoint.name |
|
|
]?.replace(this.appDir, '') |
|
|
|
|
|
const entryIsStaticMetadataRoute = |
|
|
appDirRelativeEntryPath && |
|
|
isMetadataRouteFile(appDirRelativeEntryPath, [], true) |
|
|
|
|
|
|
|
|
|
|
|
if (!entryIsStaticMetadataRoute) { |
|
|
entryFiles.add( |
|
|
nodePath.join( |
|
|
outputPath, |
|
|
outputPrefix, |
|
|
entrypoint.name.replace(/%5F/g, '_') + |
|
|
'_' + |
|
|
CLIENT_REFERENCE_MANIFEST + |
|
|
'.js' |
|
|
) |
|
|
) |
|
|
} |
|
|
} |
|
|
|
|
|
const finalFiles: string[] = [] |
|
|
|
|
|
await Promise.all( |
|
|
[ |
|
|
...new Set([ |
|
|
...entryFiles, |
|
|
...(this.entryTraces.get(entrypoint.name)?.keys() || []), |
|
|
]), |
|
|
].map(async (file) => { |
|
|
const fileInfo = this.entryTraces.get(entrypoint.name)?.get(file) |
|
|
|
|
|
const relativeFile = nodePath |
|
|
.relative(traceOutputPath, file) |
|
|
.replace(/\\/g, '/') |
|
|
|
|
|
if (file) { |
|
|
if (!fileInfo?.bundled) { |
|
|
finalFiles.push(relativeFile) |
|
|
} |
|
|
} |
|
|
}) |
|
|
) |
|
|
|
|
|
compilation.emitAsset( |
|
|
traceOutputName, |
|
|
new sources.RawSource( |
|
|
JSON.stringify({ |
|
|
version: TRACE_OUTPUT_VERSION, |
|
|
files: finalFiles, |
|
|
}) |
|
|
) as unknown as webpack.sources.RawSource |
|
|
) |
|
|
} |
|
|
}) |
|
|
} |
|
|
|
|
|
tapfinishModules( |
|
|
compilation: webpack.Compilation, |
|
|
traceEntrypointsPluginSpan: Span, |
|
|
doResolve: ( |
|
|
request: string, |
|
|
parent: string, |
|
|
job: import('@vercel/nft/out/node-file-trace').Job, |
|
|
isEsmRequested: boolean |
|
|
) => Promise<string>, |
|
|
readlink: any, |
|
|
stat: any |
|
|
) { |
|
|
compilation.hooks.finishModules.tapAsync( |
|
|
PLUGIN_NAME, |
|
|
async (_stats: any, callback: any) => { |
|
|
const finishModulesSpan = |
|
|
traceEntrypointsPluginSpan.traceChild('finish-modules') |
|
|
await finishModulesSpan |
|
|
.traceAsyncFn(async () => { |
|
|
|
|
|
|
|
|
|
|
|
const entryNameMap = new Map<string, string>() |
|
|
const entryModMap = new Map<string, any>() |
|
|
const additionalEntries = new Map<string, Map<string, any>>() |
|
|
const absolutePathByEntryName = new Map<string, string>() |
|
|
|
|
|
const depModMap = new Map<string, any>() |
|
|
|
|
|
await finishModulesSpan |
|
|
.traceChild('get-entries') |
|
|
.traceAsyncFn(async () => { |
|
|
for (const [name, entry] of compilation.entries.entries()) { |
|
|
const normalizedName = name?.replace(/\\/g, '/') |
|
|
|
|
|
const isPage = normalizedName.startsWith('pages/') |
|
|
const isApp = |
|
|
this.appDirEnabled && normalizedName.startsWith('app/') |
|
|
|
|
|
if (isApp || isPage) { |
|
|
for (const dep of entry.dependencies) { |
|
|
if (!dep) continue |
|
|
const entryMod = getModuleFromDependency(compilation, dep) |
|
|
|
|
|
|
|
|
|
|
|
if (entryMod && entryMod.resource === '') { |
|
|
const moduleBuildInfo = getModuleBuildInfo(entryMod) |
|
|
|
|
|
if (moduleBuildInfo.route) { |
|
|
const absolutePath = getPageFilePath({ |
|
|
absolutePagePath: |
|
|
moduleBuildInfo.route.absolutePagePath, |
|
|
rootDir: this.rootDir, |
|
|
appDir: this.appDir, |
|
|
pagesDir: this.pagesDir, |
|
|
}) |
|
|
|
|
|
|
|
|
if ( |
|
|
(this.pagesDir && |
|
|
absolutePath.startsWith(this.pagesDir)) || |
|
|
(this.appDir && |
|
|
absolutePath.startsWith(this.appDir)) |
|
|
) { |
|
|
entryModMap.set(absolutePath, entryMod) |
|
|
entryNameMap.set(absolutePath, name) |
|
|
absolutePathByEntryName.set(name, absolutePath) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if (entryMod.request) { |
|
|
let curMap = additionalEntries.get(name) |
|
|
|
|
|
if (!curMap) { |
|
|
curMap = new Map() |
|
|
additionalEntries.set(name, curMap) |
|
|
} |
|
|
depModMap.set(entryMod.request, entryMod) |
|
|
curMap.set(entryMod.resource, entryMod) |
|
|
} |
|
|
} |
|
|
|
|
|
if (entryMod && entryMod.resource) { |
|
|
entryNameMap.set(entryMod.resource, name) |
|
|
entryModMap.set(entryMod.resource, entryMod) |
|
|
|
|
|
let curMap = additionalEntries.get(name) |
|
|
|
|
|
if (!curMap) { |
|
|
curMap = new Map() |
|
|
additionalEntries.set(name, curMap) |
|
|
} |
|
|
depModMap.set(entryMod.resource, entryMod) |
|
|
curMap.set(entryMod.resource, entryMod) |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
}) |
|
|
|
|
|
const readOriginalSource = (path: string) => { |
|
|
return new Promise<string | Buffer>((resolve) => { |
|
|
compilation.inputFileSystem.readFile(path, (err, result) => { |
|
|
if (err) { |
|
|
|
|
|
return resolve('') |
|
|
} |
|
|
resolve(result || '') |
|
|
}) |
|
|
}) |
|
|
} |
|
|
|
|
|
const readFile = async ( |
|
|
path: string |
|
|
): Promise<Buffer | string | null> => { |
|
|
const mod = depModMap.get(path) || entryModMap.get(path) |
|
|
|
|
|
|
|
|
|
|
|
let source: Buffer | string = mod?.originalSource?.()?.buffer() |
|
|
|
|
|
try { |
|
|
|
|
|
|
|
|
let usingOriginalSource = false |
|
|
if (!source || isClientComponentEntryModule(mod)) { |
|
|
source = await readOriginalSource(path) |
|
|
usingOriginalSource = true |
|
|
} |
|
|
const sourceString = source.toString() |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if ( |
|
|
usingOriginalSource && |
|
|
|
|
|
path.match(/\.(tsx|ts|js|cjs|mjs|jsx)$/) |
|
|
) { |
|
|
let transformResolve: (result: string) => void |
|
|
let transformReject: (error: unknown) => void |
|
|
const transformPromise = new Promise<string>( |
|
|
(resolve, reject) => { |
|
|
transformResolve = resolve |
|
|
transformReject = reject |
|
|
} |
|
|
) |
|
|
|
|
|
|
|
|
|
|
|
swcLoader.apply( |
|
|
{ |
|
|
resourcePath: path, |
|
|
getOptions: () => { |
|
|
return this.swcLoaderConfig.options |
|
|
}, |
|
|
async: () => { |
|
|
return (err: unknown, result: string) => { |
|
|
if (err) { |
|
|
return transformReject(err) |
|
|
} |
|
|
return transformResolve(result) |
|
|
} |
|
|
}, |
|
|
}, |
|
|
[sourceString, undefined] |
|
|
) |
|
|
source = await transformPromise |
|
|
} |
|
|
} catch { |
|
|
|
|
|
} |
|
|
|
|
|
return source || '' |
|
|
} |
|
|
|
|
|
const entryPaths = Array.from(entryModMap.keys()) |
|
|
|
|
|
const collectDependencies = async (mod: any, parent: string) => { |
|
|
if (!mod || !mod.dependencies) return |
|
|
|
|
|
for (const dep of mod.dependencies) { |
|
|
const depMod = getModuleFromDependency(compilation, dep) |
|
|
|
|
|
if (depMod?.resource && !depModMap.get(depMod.resource)) { |
|
|
depModMap.set(depMod.resource, depMod) |
|
|
await collectDependencies(depMod, parent) |
|
|
} |
|
|
} |
|
|
} |
|
|
const entriesToTrace = [...entryPaths] |
|
|
|
|
|
for (const entry of entryPaths) { |
|
|
await collectDependencies(entryModMap.get(entry), entry) |
|
|
const entryName = entryNameMap.get(entry)! |
|
|
const curExtraEntries = additionalEntries.get(entryName) |
|
|
|
|
|
if (curExtraEntries) { |
|
|
entriesToTrace.push(...curExtraEntries.keys()) |
|
|
} |
|
|
} |
|
|
|
|
|
const contextDirectory = this.tracingRoot |
|
|
const chunks = [...entriesToTrace] |
|
|
|
|
|
this.buildTraceContext.entriesTrace = { |
|
|
action: { |
|
|
action: 'print', |
|
|
input: chunks, |
|
|
contextDirectory, |
|
|
processCwd: this.rootDir, |
|
|
}, |
|
|
appDir: this.rootDir, |
|
|
depModArray: Array.from(depModMap.keys()), |
|
|
entryNameMap: Object.fromEntries(entryNameMap), |
|
|
absolutePathByEntryName: Object.fromEntries( |
|
|
absolutePathByEntryName |
|
|
), |
|
|
outputPath: compilation.outputOptions.path!, |
|
|
} |
|
|
|
|
|
let fileList: Set<string> |
|
|
let reasons: NodeFileTraceReasons |
|
|
const ignores = [ |
|
|
...TRACE_IGNORES, |
|
|
...this.traceIgnores, |
|
|
'**/node_modules/**', |
|
|
] |
|
|
|
|
|
|
|
|
const isIgnoreMatcher = picomatch(ignores, { |
|
|
contains: true, |
|
|
dot: true, |
|
|
}) |
|
|
const ignoreFn = (path: string) => { |
|
|
return isIgnoreMatcher(path) |
|
|
} |
|
|
|
|
|
await finishModulesSpan |
|
|
.traceChild('node-file-trace-plugin', { |
|
|
traceEntryCount: entriesToTrace.length + '', |
|
|
}) |
|
|
.traceAsyncFn(async () => { |
|
|
const result = await nodeFileTrace(entriesToTrace, { |
|
|
base: this.tracingRoot, |
|
|
processCwd: this.rootDir, |
|
|
readFile, |
|
|
readlink, |
|
|
stat, |
|
|
resolve: doResolve |
|
|
? async (id, parent, job, isCjs) => { |
|
|
return doResolve(id, parent, job, !isCjs) |
|
|
} |
|
|
: undefined, |
|
|
ignore: ignoreFn, |
|
|
mixedModules: true, |
|
|
}) |
|
|
|
|
|
fileList = result.fileList |
|
|
result.esmFileList.forEach((file) => fileList.add(file)) |
|
|
reasons = result.reasons |
|
|
}) |
|
|
|
|
|
await finishModulesSpan |
|
|
.traceChild('collect-traced-files') |
|
|
.traceAsyncFn(() => { |
|
|
const parentFilesMap = getFilesMapFromReasons( |
|
|
fileList, |
|
|
reasons, |
|
|
(file) => { |
|
|
|
|
|
|
|
|
|
|
|
file = nodePath.join(this.tracingRoot, file) |
|
|
const depMod = depModMap.get(file) |
|
|
const isAsset = reasons |
|
|
.get(nodePath.relative(this.tracingRoot, file)) |
|
|
?.type.includes('asset') |
|
|
|
|
|
return ( |
|
|
!isAsset && |
|
|
Array.isArray(depMod?.loaders) && |
|
|
depMod.loaders.length > 0 |
|
|
) |
|
|
} |
|
|
) |
|
|
|
|
|
for (const entry of entryPaths) { |
|
|
const entryName = entryNameMap.get(entry)! |
|
|
const normalizedEntry = nodePath.relative( |
|
|
this.tracingRoot, |
|
|
entry |
|
|
) |
|
|
const curExtraEntries = additionalEntries.get(entryName) |
|
|
const finalDeps = new Map<string, { bundled: boolean }>() |
|
|
|
|
|
|
|
|
|
|
|
finalDeps.set(entry, { |
|
|
bundled: true, |
|
|
}) |
|
|
|
|
|
for (const [dep, info] of parentFilesMap |
|
|
.get(normalizedEntry) |
|
|
?.entries() || []) { |
|
|
finalDeps.set(nodePath.join(this.tracingRoot, dep), { |
|
|
bundled: info.ignored, |
|
|
}) |
|
|
} |
|
|
|
|
|
if (curExtraEntries) { |
|
|
for (const extraEntry of curExtraEntries.keys()) { |
|
|
const normalizedExtraEntry = nodePath.relative( |
|
|
this.tracingRoot, |
|
|
extraEntry |
|
|
) |
|
|
finalDeps.set(extraEntry, { bundled: false }) |
|
|
|
|
|
for (const [dep, info] of parentFilesMap |
|
|
.get(normalizedExtraEntry) |
|
|
?.entries() || []) { |
|
|
finalDeps.set(nodePath.join(this.tracingRoot, dep), { |
|
|
bundled: info.ignored, |
|
|
}) |
|
|
} |
|
|
} |
|
|
} |
|
|
this.entryTraces.set(entryName, finalDeps) |
|
|
} |
|
|
}) |
|
|
}) |
|
|
.then( |
|
|
() => callback(), |
|
|
(err) => callback(err) |
|
|
) |
|
|
} |
|
|
) |
|
|
} |
|
|
|
|
|
apply(compiler: webpack.Compiler) { |
|
|
compiler.hooks.compilation.tap(PLUGIN_NAME, (compilation) => { |
|
|
const compilationSpan = |
|
|
getCompilationSpan(compilation) || getCompilationSpan(compiler)! |
|
|
const traceEntrypointsPluginSpan = compilationSpan.traceChild( |
|
|
'next-trace-entrypoint-plugin' |
|
|
) |
|
|
|
|
|
const readlink = async (path: string): Promise<string | null> => { |
|
|
try { |
|
|
return await new Promise((resolve, reject) => { |
|
|
;( |
|
|
compilation.inputFileSystem |
|
|
.readlink as typeof import('fs').readlink |
|
|
)(path, (err, link) => { |
|
|
if (err) return reject(err) |
|
|
resolve(link) |
|
|
}) |
|
|
}) |
|
|
} catch (e) { |
|
|
if ( |
|
|
isError(e) && |
|
|
(e.code === 'EINVAL' || e.code === 'ENOENT' || e.code === 'UNKNOWN') |
|
|
) { |
|
|
return null |
|
|
} |
|
|
throw e |
|
|
} |
|
|
} |
|
|
const stat = async (path: string): Promise<import('fs').Stats | null> => { |
|
|
try { |
|
|
return await new Promise((resolve, reject) => { |
|
|
;(compilation.inputFileSystem.stat as typeof import('fs').stat)( |
|
|
path, |
|
|
(err, stats) => { |
|
|
if (err) return reject(err) |
|
|
resolve(stats) |
|
|
} |
|
|
) |
|
|
}) |
|
|
} catch (e) { |
|
|
if (isError(e) && (e.code === 'ENOENT' || e.code === 'ENOTDIR')) { |
|
|
return null |
|
|
} |
|
|
throw e |
|
|
} |
|
|
} |
|
|
|
|
|
traceEntrypointsPluginSpan.traceFn(() => { |
|
|
compilation.hooks.processAssets.tapAsync( |
|
|
{ |
|
|
name: PLUGIN_NAME, |
|
|
stage: webpack.Compilation.PROCESS_ASSETS_STAGE_SUMMARIZE, |
|
|
}, |
|
|
(_, callback: any) => { |
|
|
this.createTraceAssets(compilation, traceEntrypointsPluginSpan) |
|
|
.then(() => callback()) |
|
|
.catch((err) => callback(err)) |
|
|
} |
|
|
) |
|
|
|
|
|
let resolver = compilation.resolverFactory.get('normal') |
|
|
|
|
|
function getPkgName(name: string) { |
|
|
const segments = name.split('/') |
|
|
if (name[0] === '@' && segments.length > 1) |
|
|
return segments.length > 1 ? segments.slice(0, 2).join('/') : null |
|
|
return segments.length ? segments[0] : null |
|
|
} |
|
|
|
|
|
const getResolve = ( |
|
|
options: Parameters<typeof resolver.withOptions>[0] |
|
|
) => { |
|
|
const curResolver = resolver.withOptions(options) |
|
|
|
|
|
return ( |
|
|
parent: string, |
|
|
request: string, |
|
|
job: import('@vercel/nft/out/node-file-trace').Job |
|
|
) => |
|
|
new Promise<[string, boolean]>((resolve, reject) => { |
|
|
const context = nodePath.dirname(parent) |
|
|
|
|
|
curResolver.resolve( |
|
|
{}, |
|
|
context, |
|
|
request, |
|
|
{ |
|
|
fileDependencies: compilation.fileDependencies, |
|
|
missingDependencies: compilation.missingDependencies, |
|
|
contextDependencies: compilation.contextDependencies, |
|
|
}, |
|
|
async (err: any, result?, resContext?) => { |
|
|
if (err) return reject(err) |
|
|
|
|
|
if (!result) { |
|
|
return reject(new Error('module not found')) |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if (result.includes('?') || result.includes('!')) { |
|
|
result = resContext?.path || result |
|
|
} |
|
|
|
|
|
try { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (result.includes('node_modules')) { |
|
|
let requestPath = result |
|
|
.replace(/\\/g, '/') |
|
|
.replace(/\0/g, '') |
|
|
|
|
|
if ( |
|
|
!nodePath.isAbsolute(request) && |
|
|
request.includes('/') && |
|
|
resContext?.descriptionFileRoot |
|
|
) { |
|
|
requestPath = ( |
|
|
resContext.descriptionFileRoot + |
|
|
request.slice(getPkgName(request)?.length || 0) + |
|
|
nodePath.sep + |
|
|
'package.json' |
|
|
) |
|
|
.replace(/\\/g, '/') |
|
|
.replace(/\0/g, '') |
|
|
} |
|
|
|
|
|
const rootSeparatorIndex = requestPath.indexOf('/') |
|
|
let separatorIndex: number |
|
|
while ( |
|
|
(separatorIndex = requestPath.lastIndexOf('/')) > |
|
|
rootSeparatorIndex |
|
|
) { |
|
|
requestPath = requestPath.slice(0, separatorIndex) |
|
|
const curPackageJsonPath = `${requestPath}/package.json` |
|
|
if (await job.isFile(curPackageJsonPath)) { |
|
|
await job.emitFile( |
|
|
await job.realpath(curPackageJsonPath), |
|
|
'resolve', |
|
|
parent |
|
|
) |
|
|
} |
|
|
} |
|
|
} |
|
|
} catch (_err) { |
|
|
|
|
|
|
|
|
} |
|
|
resolve([result, options.dependencyType === 'esm']) |
|
|
} |
|
|
) |
|
|
}) |
|
|
} |
|
|
|
|
|
const CJS_RESOLVE_OPTIONS = { |
|
|
...NODE_RESOLVE_OPTIONS, |
|
|
fullySpecified: undefined, |
|
|
modules: undefined, |
|
|
extensions: undefined, |
|
|
} |
|
|
const BASE_CJS_RESOLVE_OPTIONS = { |
|
|
...CJS_RESOLVE_OPTIONS, |
|
|
alias: false, |
|
|
} |
|
|
const ESM_RESOLVE_OPTIONS = { |
|
|
...NODE_ESM_RESOLVE_OPTIONS, |
|
|
fullySpecified: undefined, |
|
|
modules: undefined, |
|
|
extensions: undefined, |
|
|
} |
|
|
const BASE_ESM_RESOLVE_OPTIONS = { |
|
|
...ESM_RESOLVE_OPTIONS, |
|
|
alias: false, |
|
|
} |
|
|
|
|
|
const doResolve = async ( |
|
|
request: string, |
|
|
parent: string, |
|
|
job: import('@vercel/nft/out/node-file-trace').Job, |
|
|
isEsmRequested: boolean |
|
|
): Promise<string> => { |
|
|
const context = nodePath.dirname(parent) |
|
|
|
|
|
|
|
|
const { res } = await resolveExternal( |
|
|
this.rootDir, |
|
|
this.esmExternals, |
|
|
context, |
|
|
request, |
|
|
isEsmRequested, |
|
|
(options) => (_: string, resRequest: string) => { |
|
|
return getResolve(options)(parent, resRequest, job) |
|
|
}, |
|
|
undefined, |
|
|
undefined, |
|
|
ESM_RESOLVE_OPTIONS, |
|
|
CJS_RESOLVE_OPTIONS, |
|
|
BASE_ESM_RESOLVE_OPTIONS, |
|
|
BASE_CJS_RESOLVE_OPTIONS |
|
|
) |
|
|
|
|
|
if (!res) { |
|
|
throw new Error(`failed to resolve ${request} from ${parent}`) |
|
|
} |
|
|
return res.replace(/\0/g, '') |
|
|
} |
|
|
|
|
|
this.tapfinishModules( |
|
|
compilation, |
|
|
traceEntrypointsPluginSpan, |
|
|
doResolve, |
|
|
readlink, |
|
|
stat |
|
|
) |
|
|
}) |
|
|
}) |
|
|
} |
|
|
} |
|
|
|