next 15.2.2-canary.0 → 15.2.2-canary.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of next might be problematic. Click here for more details.

Files changed (36) hide show
  1. package/dist/bin/next +1 -1
  2. package/dist/build/index.js +2 -2
  3. package/dist/build/swc/index.js +1 -1
  4. package/dist/build/webpack-config.js +2 -2
  5. package/dist/client/app-bootstrap.js +1 -1
  6. package/dist/client/components/react-dev-overlay/server/middleware-turbopack.d.ts +2 -11
  7. package/dist/client/components/react-dev-overlay/server/middleware-turbopack.js +17 -15
  8. package/dist/client/components/react-dev-overlay/server/middleware-turbopack.js.map +1 -1
  9. package/dist/client/components/react-dev-overlay/server/middleware-webpack.js +5 -1
  10. package/dist/client/components/react-dev-overlay/server/middleware-webpack.js.map +1 -1
  11. package/dist/client/index.js +1 -1
  12. package/dist/esm/build/index.js +2 -2
  13. package/dist/esm/build/swc/index.js +1 -1
  14. package/dist/esm/build/webpack-config.js +2 -2
  15. package/dist/esm/client/app-bootstrap.js +1 -1
  16. package/dist/esm/client/components/react-dev-overlay/server/middleware-turbopack.js +18 -12
  17. package/dist/esm/client/components/react-dev-overlay/server/middleware-turbopack.js.map +1 -1
  18. package/dist/esm/client/components/react-dev-overlay/server/middleware-webpack.js +5 -1
  19. package/dist/esm/client/components/react-dev-overlay/server/middleware-webpack.js.map +1 -1
  20. package/dist/esm/client/index.js +1 -1
  21. package/dist/esm/server/dev/hot-reloader-turbopack.js +9 -9
  22. package/dist/esm/server/dev/hot-reloader-turbopack.js.map +1 -1
  23. package/dist/esm/server/dev/hot-reloader-webpack.js +1 -1
  24. package/dist/esm/server/lib/app-info-log.js +1 -1
  25. package/dist/esm/server/lib/start-server.js +1 -1
  26. package/dist/esm/shared/lib/canary-only.js +1 -1
  27. package/dist/server/dev/hot-reloader-turbopack.js +9 -9
  28. package/dist/server/dev/hot-reloader-turbopack.js.map +1 -1
  29. package/dist/server/dev/hot-reloader-webpack.js +1 -1
  30. package/dist/server/lib/app-info-log.js +1 -1
  31. package/dist/server/lib/start-server.js +1 -1
  32. package/dist/shared/lib/canary-only.js +1 -1
  33. package/dist/telemetry/anonymous-meta.js +1 -1
  34. package/dist/telemetry/events/session-stopped.js +2 -2
  35. package/dist/telemetry/events/version.js +2 -2
  36. package/package.json +15 -15
@@ -14,7 +14,7 @@ function shouldIgnorePath(modulePath) {
14
14
  modulePath.includes('next/dist') || modulePath.startsWith('node:');
15
15
  }
16
16
  const currentSourcesByFile = new Map();
17
- export async function batchedTraceSource(project, frame) {
17
+ async function batchedTraceSource(project, frame) {
18
18
  const file = frame.file ? decodeURIComponent(frame.file) : undefined;
19
19
  if (!file) return;
20
20
  // For node internals they cannot traced the actual source code with project.traceSource,
@@ -201,7 +201,7 @@ function createStackFrame(searchParams) {
201
201
  // The callsite will point to the column of the variable name instead of the
202
202
  // name of the enclosing function.
203
203
  // TODO(NDX-531): Spy on prepareStackTrace to get the enclosing line number for method name mapping.
204
- _frame_methodName_replace, _frame_methodName, _originalPosition_source;
204
+ _frame_methodName_replace, _frame_methodName;
205
205
  const { originalPosition, sourceContent } = traced;
206
206
  const applicableSourceMap = findApplicableSourceMapPayload(frame, sourceMapPayload);
207
207
  // TODO(veil): Upstream a method to sourcemap consumer that immediately says if a frame is ignored or not.
@@ -221,7 +221,7 @@ function createStackFrame(searchParams) {
221
221
  const originalStackFrame = {
222
222
  methodName: ((_frame_methodName = frame.methodName) == null ? void 0 : (_frame_methodName_replace = _frame_methodName.replace('__WEBPACK_DEFAULT_EXPORT__', 'default')) == null ? void 0 : _frame_methodName_replace.replace('__webpack_exports__.', '')) || '<unknown>',
223
223
  column: ((_originalPosition_column = originalPosition.column) != null ? _originalPosition_column : 0) + 1,
224
- file: ((_originalPosition_source = originalPosition.source) == null ? void 0 : _originalPosition_source.startsWith('file://')) ? relativeToCwd(originalPosition.source) : originalPosition.source,
224
+ file: originalPosition.source,
225
225
  lineNumber: (_originalPosition_line = originalPosition.line) != null ? _originalPosition_line : 0,
226
226
  // TODO: c&p from async createOriginalStackFrame but why not frame.arguments?
227
227
  arguments: [],
@@ -235,12 +235,7 @@ function createStackFrame(searchParams) {
235
235
  }
236
236
  return undefined;
237
237
  }
238
- function relativeToCwd(file) {
239
- const relPath = path.relative(process.cwd(), url.fileURLToPath(file));
240
- // TODO(sokra) include a ./ here to make it a relative path
241
- return relPath;
242
- }
243
- async function createOriginalStackFrame(project, frame) {
238
+ async function createOriginalStackFrame(project, projectPath, frame) {
244
239
  var _ref;
245
240
  const traced = (_ref = await nativeTraceSource(frame)) != null ? _ref : // TODO(veil): When would the bundler know more than native?
246
241
  // If it's faster, try the bundler first and fall back to native later.
@@ -248,12 +243,23 @@ async function createOriginalStackFrame(project, frame) {
248
243
  if (!traced) {
249
244
  return null;
250
245
  }
246
+ let normalizedStackFrameLocation = traced.frame.file;
247
+ if (normalizedStackFrameLocation !== null && normalizedStackFrameLocation.startsWith('file://')) {
248
+ normalizedStackFrameLocation = path.relative(projectPath, url.fileURLToPath(normalizedStackFrameLocation));
249
+ }
251
250
  return {
252
- originalStackFrame: traced.frame,
251
+ originalStackFrame: {
252
+ arguments: traced.frame.arguments,
253
+ column: traced.frame.column,
254
+ file: normalizedStackFrameLocation,
255
+ ignored: traced.frame.ignored,
256
+ lineNumber: traced.frame.lineNumber,
257
+ methodName: traced.frame.methodName
258
+ },
253
259
  originalCodeFrame: getOriginalCodeFrame(traced.frame, traced.source)
254
260
  };
255
261
  }
256
- export function getOverlayMiddleware(project) {
262
+ export function getOverlayMiddleware(project, projectPath) {
257
263
  return async function(req, res, next) {
258
264
  const { pathname, searchParams } = new URL(req.url, 'http://n');
259
265
  if (pathname === '/__nextjs_original-stack-frames') {
@@ -272,7 +278,7 @@ export function getOverlayMiddleware(project) {
272
278
  const stackFrames = createStackFrames(request);
273
279
  const result = await Promise.all(stackFrames.map(async (frame)=>{
274
280
  try {
275
- const stackFrame = await createOriginalStackFrame(project, frame);
281
+ const stackFrame = await createOriginalStackFrame(project, projectPath, frame);
276
282
  if (stackFrame === null) {
277
283
  return {
278
284
  status: 'rejected',
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../../../src/client/components/react-dev-overlay/server/middleware-turbopack.ts"],"sourcesContent":["import type { IncomingMessage, ServerResponse } from 'http'\nimport {\n getOriginalCodeFrame,\n type OriginalStackFrameResponse,\n type OriginalStackFramesRequest,\n type OriginalStackFramesResponse,\n} from './shared'\nimport { middlewareResponse } from './middleware-response'\nimport fs, { constants as FS } from 'fs/promises'\nimport path from 'path'\nimport url from 'url'\nimport { launchEditor } from '../utils/launch-editor'\nimport type { StackFrame } from 'next/dist/compiled/stacktrace-parser'\nimport {\n SourceMapConsumer,\n type BasicSourceMapConsumer,\n type NullableMappedPosition,\n} from 'next/dist/compiled/source-map08'\nimport type { Project, TurbopackStackFrame } from '../../../../build/swc/types'\nimport { getSourceMapFromFile } from '../utils/get-source-map-from-file'\nimport { findSourceMap, type SourceMapPayload } from 'node:module'\nimport { pathToFileURL } from 'node:url'\nimport { inspect } from 'node:util'\n\nfunction shouldIgnorePath(modulePath: string): boolean {\n return (\n modulePath.includes('node_modules') ||\n // Only relevant for when Next.js is symlinked e.g. in the Next.js monorepo\n modulePath.includes('next/dist') ||\n modulePath.startsWith('node:')\n )\n}\n\ntype IgnorableStackFrame = StackFrame & { ignored: boolean }\n\nconst currentSourcesByFile: Map<string, Promise<string | null>> = new Map()\nexport async function batchedTraceSource(\n project: Project,\n frame: TurbopackStackFrame\n): Promise<{ frame: IgnorableStackFrame; source: string | null } | undefined> {\n const file = frame.file\n ? // TODO(veil): Why are the frames sent encoded?\n decodeURIComponent(frame.file)\n : undefined\n\n if (!file) return\n\n // For node internals they cannot traced the actual source code with project.traceSource,\n // we need an early return to indicate it's ignored to avoid the unknown scheme error from `project.traceSource`.\n if (file.startsWith('node:')) {\n return {\n frame: {\n file,\n lineNumber: frame.line ?? 0,\n column: frame.column ?? 0,\n methodName: frame.methodName ?? '<unknown>',\n ignored: true,\n arguments: [],\n },\n source: null,\n }\n }\n\n const currentDirectoryFileUrl = pathToFileURL(process.cwd()).href\n\n const sourceFrame = await project.traceSource(frame, currentDirectoryFileUrl)\n if (!sourceFrame) {\n return {\n frame: {\n file,\n lineNumber: frame.line ?? 0,\n column: frame.column ?? 0,\n methodName: frame.methodName ?? '<unknown>',\n ignored: shouldIgnorePath(file),\n arguments: [],\n },\n source: null,\n }\n }\n\n let source = null\n const originalFile = sourceFrame.originalFile\n\n // Don't look up source for node_modules or internals. These can often be large bundled files.\n const ignored =\n shouldIgnorePath(originalFile ?? sourceFrame.file) ||\n // isInternal means resource starts with turbopack:///[turbopack]\n !!sourceFrame.isInternal\n if (originalFile && !ignored) {\n let sourcePromise = currentSourcesByFile.get(originalFile)\n if (!sourcePromise) {\n sourcePromise = project.getSourceForAsset(originalFile)\n currentSourcesByFile.set(originalFile, sourcePromise)\n setTimeout(() => {\n // Cache file reads for 100ms, as frames will often reference the same\n // files and can be large.\n currentSourcesByFile.delete(originalFile!)\n }, 100)\n }\n source = await sourcePromise\n }\n\n // TODO: get ignoredList from turbopack source map\n const ignorableFrame = {\n file: sourceFrame.file,\n lineNumber: sourceFrame.line ?? 0,\n column: sourceFrame.column ?? 0,\n methodName:\n // We ignore the sourcemapped name since it won't be the correct name.\n // The callsite will point to the column of the variable name instead of the\n // name of the enclosing function.\n // TODO(NDX-531): Spy on prepareStackTrace to get the enclosing line number for method name mapping.\n frame.methodName ?? '<unknown>',\n ignored,\n arguments: [],\n }\n\n return {\n frame: ignorableFrame,\n source,\n }\n}\nfunction parseFile(fileParam: string | null): string | undefined {\n if (!fileParam) {\n return undefined\n }\n\n // rsc://React/Server/file://<filename>?42 => file://<filename>\n return fileParam.replace(/^rsc:\\/\\/React\\/[^/]+\\//, '').replace(/\\?\\d+$/, '')\n}\n\nfunction createStackFrames(\n body: OriginalStackFramesRequest\n): TurbopackStackFrame[] {\n const { frames, isServer } = body\n\n return frames\n .map((frame): TurbopackStackFrame | undefined => {\n const file = parseFile(frame.file)\n\n if (!file) {\n return undefined\n }\n\n return {\n file,\n methodName: frame.methodName ?? '<unknown>',\n line: frame.lineNumber ?? 0,\n column: frame.column ?? 0,\n isServer,\n } satisfies TurbopackStackFrame\n })\n .filter((f): f is TurbopackStackFrame => f !== undefined)\n}\n\nfunction createStackFrame(\n searchParams: URLSearchParams\n): TurbopackStackFrame | undefined {\n const file = parseFile(searchParams.get('file'))\n\n if (!file) {\n return undefined\n }\n\n return {\n file,\n methodName: searchParams.get('methodName') ?? '<unknown>',\n line: parseInt(searchParams.get('lineNumber') ?? '0', 10) || 0,\n column: parseInt(searchParams.get('column') ?? '0', 10) || 0,\n isServer: searchParams.get('isServer') === 'true',\n } satisfies TurbopackStackFrame\n}\n\n/**\n * https://tc39.es/source-map/#index-map\n */\ninterface IndexSourceMapSection {\n offset: {\n line: number\n column: number\n }\n map: ModernRawSourceMap\n}\n\n// TODO(veil): Upstream types\ninterface IndexSourceMap {\n version: number\n file: string\n sections: IndexSourceMapSection[]\n}\n\ninterface ModernRawSourceMap extends SourceMapPayload {\n ignoreList?: number[]\n}\n\ntype ModernSourceMapPayload = ModernRawSourceMap | IndexSourceMap\n\n/**\n * Finds the sourcemap payload applicable to a given frame.\n * Equal to the input unless an Index Source Map is used.\n */\nfunction findApplicableSourceMapPayload(\n frame: TurbopackStackFrame,\n payload: ModernSourceMapPayload\n): ModernRawSourceMap | undefined {\n if ('sections' in payload) {\n const frameLine = frame.line ?? 0\n const frameColumn = frame.column ?? 0\n // Sections must not overlap and must be sorted: https://tc39.es/source-map/#section-object\n // Therefore the last section that has an offset less than or equal to the frame is the applicable one.\n // TODO(veil): Binary search\n let section: IndexSourceMapSection | undefined = payload.sections[0]\n for (\n let i = 0;\n i < payload.sections.length &&\n payload.sections[i].offset.line <= frameLine &&\n payload.sections[i].offset.column <= frameColumn;\n i++\n ) {\n section = payload.sections[i]\n }\n\n return section === undefined ? undefined : section.map\n } else {\n return payload\n }\n}\n\n/**\n * @returns 1-based lines and 0-based columns\n */\nasync function nativeTraceSource(\n frame: TurbopackStackFrame\n): Promise<{ frame: IgnorableStackFrame; source: string | null } | undefined> {\n const sourceURL = // TODO(veil): Why are the frames sent encoded?\n decodeURIComponent(frame.file)\n let sourceMapPayload: ModernSourceMapPayload | undefined\n try {\n sourceMapPayload = findSourceMap(sourceURL)?.payload\n } catch (cause) {\n throw new Error(\n `${sourceURL}: Invalid source map. Only conformant source maps can be used to find the original code.`,\n { cause }\n )\n }\n\n if (sourceMapPayload !== undefined) {\n let consumer: BasicSourceMapConsumer\n try {\n consumer = await new SourceMapConsumer(sourceMapPayload)\n } catch (cause) {\n throw new Error(\n `${sourceURL}: Invalid source map. Only conformant source maps can be used to find the original code.`,\n { cause }\n )\n }\n let traced: {\n originalPosition: NullableMappedPosition\n sourceContent: string | null\n } | null\n try {\n const originalPosition = consumer.originalPositionFor({\n line: frame.line ?? 1,\n // 0-based columns out requires 0-based columns in.\n column: (frame.column ?? 1) - 1,\n })\n\n if (originalPosition.source === null) {\n traced = null\n } else {\n const sourceContent: string | null =\n consumer.sourceContentFor(\n originalPosition.source,\n /* returnNullOnMissing */ true\n ) ?? null\n\n traced = { originalPosition, sourceContent }\n }\n } finally {\n consumer.destroy()\n }\n\n if (traced !== null) {\n const { originalPosition, sourceContent } = traced\n const applicableSourceMap = findApplicableSourceMapPayload(\n frame,\n sourceMapPayload\n )\n\n // TODO(veil): Upstream a method to sourcemap consumer that immediately says if a frame is ignored or not.\n let ignored = false\n if (applicableSourceMap === undefined) {\n console.error(\n 'No applicable source map found in sections for frame',\n frame\n )\n } else {\n // TODO: O(n^2). Consider moving `ignoreList` into a Set\n const sourceIndex = applicableSourceMap.sources.indexOf(\n originalPosition.source!\n )\n ignored =\n applicableSourceMap.ignoreList?.includes(sourceIndex) ??\n // When sourcemap is not available, fallback to checking `frame.file`.\n // e.g. In pages router, nextjs server code is not bundled into the page.\n shouldIgnorePath(frame.file)\n }\n\n const originalStackFrame: IgnorableStackFrame = {\n methodName:\n // We ignore the sourcemapped name since it won't be the correct name.\n // The callsite will point to the column of the variable name instead of the\n // name of the enclosing function.\n // TODO(NDX-531): Spy on prepareStackTrace to get the enclosing line number for method name mapping.\n frame.methodName\n ?.replace('__WEBPACK_DEFAULT_EXPORT__', 'default')\n ?.replace('__webpack_exports__.', '') || '<unknown>',\n column: (originalPosition.column ?? 0) + 1,\n file: originalPosition.source?.startsWith('file://')\n ? relativeToCwd(originalPosition.source)\n : originalPosition.source,\n lineNumber: originalPosition.line ?? 0,\n // TODO: c&p from async createOriginalStackFrame but why not frame.arguments?\n arguments: [],\n ignored,\n }\n\n return {\n frame: originalStackFrame,\n source: sourceContent,\n }\n }\n }\n\n return undefined\n}\n\nfunction relativeToCwd(file: string): string {\n const relPath = path.relative(process.cwd(), url.fileURLToPath(file))\n // TODO(sokra) include a ./ here to make it a relative path\n return relPath\n}\n\nasync function createOriginalStackFrame(\n project: Project,\n frame: TurbopackStackFrame\n): Promise<OriginalStackFrameResponse | null> {\n const traced =\n (await nativeTraceSource(frame)) ??\n // TODO(veil): When would the bundler know more than native?\n // If it's faster, try the bundler first and fall back to native later.\n (await batchedTraceSource(project, frame))\n if (!traced) {\n return null\n }\n\n return {\n originalStackFrame: traced.frame,\n originalCodeFrame: getOriginalCodeFrame(traced.frame, traced.source),\n }\n}\n\nexport function getOverlayMiddleware(project: Project) {\n return async function (\n req: IncomingMessage,\n res: ServerResponse,\n next: () => void\n ): Promise<void> {\n const { pathname, searchParams } = new URL(req.url!, 'http://n')\n\n if (pathname === '/__nextjs_original-stack-frames') {\n if (req.method !== 'POST') {\n return middlewareResponse.badRequest(res)\n }\n\n const body = await new Promise<string>((resolve, reject) => {\n let data = ''\n req.on('data', (chunk) => {\n data += chunk\n })\n req.on('end', () => resolve(data))\n req.on('error', reject)\n })\n\n const request = JSON.parse(body) as OriginalStackFramesRequest\n const stackFrames = createStackFrames(request)\n const result: OriginalStackFramesResponse = await Promise.all(\n stackFrames.map(async (frame) => {\n try {\n const stackFrame = await createOriginalStackFrame(project, frame)\n if (stackFrame === null) {\n return {\n status: 'rejected',\n reason: 'Failed to create original stack frame',\n }\n }\n return { status: 'fulfilled', value: stackFrame }\n } catch (error) {\n return {\n status: 'rejected',\n reason: inspect(error, { colors: false }),\n }\n }\n })\n )\n\n return middlewareResponse.json(res, result)\n } else if (pathname === '/__nextjs_launch-editor') {\n const frame = createStackFrame(searchParams)\n\n if (!frame) return middlewareResponse.badRequest(res)\n\n const fileExists = await fs.access(frame.file, FS.F_OK).then(\n () => true,\n () => false\n )\n if (!fileExists) return middlewareResponse.notFound(res)\n\n try {\n launchEditor(frame.file, frame.line ?? 1, frame.column ?? 1)\n } catch (err) {\n console.log('Failed to launch editor:', err)\n return middlewareResponse.internalServerError(res)\n }\n\n return middlewareResponse.noContent(res)\n }\n\n return next()\n }\n}\n\nexport function getSourceMapMiddleware(project: Project) {\n return async function (\n req: IncomingMessage,\n res: ServerResponse,\n next: () => void\n ): Promise<void> {\n const { pathname, searchParams } = new URL(req.url!, 'http://n')\n\n if (pathname !== '/__nextjs_source-map') {\n return next()\n }\n\n let filename = searchParams.get('filename')\n\n if (!filename) {\n return middlewareResponse.badRequest(res)\n }\n\n // TODO(veil): Always try the native version first.\n // Externals could also be files that aren't bundled via Webpack.\n if (\n filename.startsWith('webpack://') ||\n filename.startsWith('webpack-internal:///')\n ) {\n const sourceMap = findSourceMap(filename)\n\n if (sourceMap) {\n return middlewareResponse.json(res, sourceMap.payload)\n }\n\n return middlewareResponse.noContent(res)\n }\n\n try {\n // Turbopack chunk filenames might be URL-encoded.\n filename = decodeURI(filename)\n\n if (path.isAbsolute(filename)) {\n filename = url.pathToFileURL(filename).href\n }\n\n const sourceMapString = await project.getSourceMap(filename)\n\n if (sourceMapString) {\n return middlewareResponse.jsonString(res, sourceMapString)\n }\n\n if (filename.startsWith('file:')) {\n const sourceMap = await getSourceMapFromFile(filename)\n\n if (sourceMap) {\n return middlewareResponse.json(res, sourceMap)\n }\n }\n } catch (error) {\n console.error('Failed to get source map:', error)\n }\n\n middlewareResponse.noContent(res)\n }\n}\n"],"names":["getOriginalCodeFrame","middlewareResponse","fs","constants","FS","path","url","launchEditor","SourceMapConsumer","getSourceMapFromFile","findSourceMap","pathToFileURL","inspect","shouldIgnorePath","modulePath","includes","startsWith","currentSourcesByFile","Map","batchedTraceSource","project","frame","file","decodeURIComponent","undefined","lineNumber","line","column","methodName","ignored","arguments","source","currentDirectoryFileUrl","process","cwd","href","sourceFrame","traceSource","originalFile","isInternal","sourcePromise","get","getSourceForAsset","set","setTimeout","delete","ignorableFrame","parseFile","fileParam","replace","createStackFrames","body","frames","isServer","map","filter","f","createStackFrame","searchParams","parseInt","findApplicableSourceMapPayload","payload","frameLine","frameColumn","section","sections","i","length","offset","nativeTraceSource","sourceURL","sourceMapPayload","cause","Error","consumer","traced","originalPosition","originalPositionFor","sourceContent","sourceContentFor","destroy","applicableSourceMap","console","error","sourceIndex","sources","indexOf","ignoreList","originalStackFrame","relativeToCwd","relPath","relative","fileURLToPath","createOriginalStackFrame","originalCodeFrame","getOverlayMiddleware","req","res","next","pathname","URL","method","badRequest","Promise","resolve","reject","data","on","chunk","request","JSON","parse","stackFrames","result","all","stackFrame","status","reason","value","colors","json","fileExists","access","F_OK","then","notFound","err","log","internalServerError","noContent","getSourceMapMiddleware","filename","sourceMap","decodeURI","isAbsolute","sourceMapString","getSourceMap","jsonString"],"mappings":"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"}
1
+ {"version":3,"sources":["../../../../../src/client/components/react-dev-overlay/server/middleware-turbopack.ts"],"sourcesContent":["import type { IncomingMessage, ServerResponse } from 'http'\nimport {\n getOriginalCodeFrame,\n type OriginalStackFrameResponse,\n type OriginalStackFramesRequest,\n type OriginalStackFramesResponse,\n} from './shared'\nimport { middlewareResponse } from './middleware-response'\nimport fs, { constants as FS } from 'fs/promises'\nimport path from 'path'\nimport url from 'url'\nimport { launchEditor } from '../utils/launch-editor'\nimport type { StackFrame } from 'next/dist/compiled/stacktrace-parser'\nimport {\n SourceMapConsumer,\n type BasicSourceMapConsumer,\n type NullableMappedPosition,\n} from 'next/dist/compiled/source-map08'\nimport type { Project, TurbopackStackFrame } from '../../../../build/swc/types'\nimport { getSourceMapFromFile } from '../utils/get-source-map-from-file'\nimport { findSourceMap, type SourceMapPayload } from 'node:module'\nimport { pathToFileURL } from 'node:url'\nimport { inspect } from 'node:util'\n\nfunction shouldIgnorePath(modulePath: string): boolean {\n return (\n modulePath.includes('node_modules') ||\n // Only relevant for when Next.js is symlinked e.g. in the Next.js monorepo\n modulePath.includes('next/dist') ||\n modulePath.startsWith('node:')\n )\n}\n\ntype IgnorableStackFrame = StackFrame & { ignored: boolean }\n\nconst currentSourcesByFile: Map<string, Promise<string | null>> = new Map()\nasync function batchedTraceSource(\n project: Project,\n frame: TurbopackStackFrame\n): Promise<{ frame: IgnorableStackFrame; source: string | null } | undefined> {\n const file = frame.file\n ? // TODO(veil): Why are the frames sent encoded?\n decodeURIComponent(frame.file)\n : undefined\n\n if (!file) return\n\n // For node internals they cannot traced the actual source code with project.traceSource,\n // we need an early return to indicate it's ignored to avoid the unknown scheme error from `project.traceSource`.\n if (file.startsWith('node:')) {\n return {\n frame: {\n file,\n lineNumber: frame.line ?? 0,\n column: frame.column ?? 0,\n methodName: frame.methodName ?? '<unknown>',\n ignored: true,\n arguments: [],\n },\n source: null,\n }\n }\n\n const currentDirectoryFileUrl = pathToFileURL(process.cwd()).href\n\n const sourceFrame = await project.traceSource(frame, currentDirectoryFileUrl)\n if (!sourceFrame) {\n return {\n frame: {\n file,\n lineNumber: frame.line ?? 0,\n column: frame.column ?? 0,\n methodName: frame.methodName ?? '<unknown>',\n ignored: shouldIgnorePath(file),\n arguments: [],\n },\n source: null,\n }\n }\n\n let source = null\n const originalFile = sourceFrame.originalFile\n\n // Don't look up source for node_modules or internals. These can often be large bundled files.\n const ignored =\n shouldIgnorePath(originalFile ?? sourceFrame.file) ||\n // isInternal means resource starts with turbopack:///[turbopack]\n !!sourceFrame.isInternal\n if (originalFile && !ignored) {\n let sourcePromise = currentSourcesByFile.get(originalFile)\n if (!sourcePromise) {\n sourcePromise = project.getSourceForAsset(originalFile)\n currentSourcesByFile.set(originalFile, sourcePromise)\n setTimeout(() => {\n // Cache file reads for 100ms, as frames will often reference the same\n // files and can be large.\n currentSourcesByFile.delete(originalFile!)\n }, 100)\n }\n source = await sourcePromise\n }\n\n // TODO: get ignoredList from turbopack source map\n const ignorableFrame = {\n file: sourceFrame.file,\n lineNumber: sourceFrame.line ?? 0,\n column: sourceFrame.column ?? 0,\n methodName:\n // We ignore the sourcemapped name since it won't be the correct name.\n // The callsite will point to the column of the variable name instead of the\n // name of the enclosing function.\n // TODO(NDX-531): Spy on prepareStackTrace to get the enclosing line number for method name mapping.\n frame.methodName ?? '<unknown>',\n ignored,\n arguments: [],\n }\n\n return {\n frame: ignorableFrame,\n source,\n }\n}\nfunction parseFile(fileParam: string | null): string | undefined {\n if (!fileParam) {\n return undefined\n }\n\n // rsc://React/Server/file://<filename>?42 => file://<filename>\n return fileParam.replace(/^rsc:\\/\\/React\\/[^/]+\\//, '').replace(/\\?\\d+$/, '')\n}\n\nfunction createStackFrames(\n body: OriginalStackFramesRequest\n): TurbopackStackFrame[] {\n const { frames, isServer } = body\n\n return frames\n .map((frame): TurbopackStackFrame | undefined => {\n const file = parseFile(frame.file)\n\n if (!file) {\n return undefined\n }\n\n return {\n file,\n methodName: frame.methodName ?? '<unknown>',\n line: frame.lineNumber ?? 0,\n column: frame.column ?? 0,\n isServer,\n } satisfies TurbopackStackFrame\n })\n .filter((f): f is TurbopackStackFrame => f !== undefined)\n}\n\nfunction createStackFrame(\n searchParams: URLSearchParams\n): TurbopackStackFrame | undefined {\n const file = parseFile(searchParams.get('file'))\n\n if (!file) {\n return undefined\n }\n\n return {\n file,\n methodName: searchParams.get('methodName') ?? '<unknown>',\n line: parseInt(searchParams.get('lineNumber') ?? '0', 10) || 0,\n column: parseInt(searchParams.get('column') ?? '0', 10) || 0,\n isServer: searchParams.get('isServer') === 'true',\n } satisfies TurbopackStackFrame\n}\n\n/**\n * https://tc39.es/source-map/#index-map\n */\ninterface IndexSourceMapSection {\n offset: {\n line: number\n column: number\n }\n map: ModernRawSourceMap\n}\n\n// TODO(veil): Upstream types\ninterface IndexSourceMap {\n version: number\n file: string\n sections: IndexSourceMapSection[]\n}\n\ninterface ModernRawSourceMap extends SourceMapPayload {\n ignoreList?: number[]\n}\n\ntype ModernSourceMapPayload = ModernRawSourceMap | IndexSourceMap\n\n/**\n * Finds the sourcemap payload applicable to a given frame.\n * Equal to the input unless an Index Source Map is used.\n */\nfunction findApplicableSourceMapPayload(\n frame: TurbopackStackFrame,\n payload: ModernSourceMapPayload\n): ModernRawSourceMap | undefined {\n if ('sections' in payload) {\n const frameLine = frame.line ?? 0\n const frameColumn = frame.column ?? 0\n // Sections must not overlap and must be sorted: https://tc39.es/source-map/#section-object\n // Therefore the last section that has an offset less than or equal to the frame is the applicable one.\n // TODO(veil): Binary search\n let section: IndexSourceMapSection | undefined = payload.sections[0]\n for (\n let i = 0;\n i < payload.sections.length &&\n payload.sections[i].offset.line <= frameLine &&\n payload.sections[i].offset.column <= frameColumn;\n i++\n ) {\n section = payload.sections[i]\n }\n\n return section === undefined ? undefined : section.map\n } else {\n return payload\n }\n}\n\n/**\n * @returns 1-based lines and 0-based columns\n */\nasync function nativeTraceSource(\n frame: TurbopackStackFrame\n): Promise<{ frame: IgnorableStackFrame; source: string | null } | undefined> {\n const sourceURL = // TODO(veil): Why are the frames sent encoded?\n decodeURIComponent(frame.file)\n let sourceMapPayload: ModernSourceMapPayload | undefined\n try {\n sourceMapPayload = findSourceMap(sourceURL)?.payload\n } catch (cause) {\n throw new Error(\n `${sourceURL}: Invalid source map. Only conformant source maps can be used to find the original code.`,\n { cause }\n )\n }\n\n if (sourceMapPayload !== undefined) {\n let consumer: BasicSourceMapConsumer\n try {\n consumer = await new SourceMapConsumer(sourceMapPayload)\n } catch (cause) {\n throw new Error(\n `${sourceURL}: Invalid source map. Only conformant source maps can be used to find the original code.`,\n { cause }\n )\n }\n let traced: {\n originalPosition: NullableMappedPosition\n sourceContent: string | null\n } | null\n try {\n const originalPosition = consumer.originalPositionFor({\n line: frame.line ?? 1,\n // 0-based columns out requires 0-based columns in.\n column: (frame.column ?? 1) - 1,\n })\n\n if (originalPosition.source === null) {\n traced = null\n } else {\n const sourceContent: string | null =\n consumer.sourceContentFor(\n originalPosition.source,\n /* returnNullOnMissing */ true\n ) ?? null\n\n traced = { originalPosition, sourceContent }\n }\n } finally {\n consumer.destroy()\n }\n\n if (traced !== null) {\n const { originalPosition, sourceContent } = traced\n const applicableSourceMap = findApplicableSourceMapPayload(\n frame,\n sourceMapPayload\n )\n\n // TODO(veil): Upstream a method to sourcemap consumer that immediately says if a frame is ignored or not.\n let ignored = false\n if (applicableSourceMap === undefined) {\n console.error(\n 'No applicable source map found in sections for frame',\n frame\n )\n } else {\n // TODO: O(n^2). Consider moving `ignoreList` into a Set\n const sourceIndex = applicableSourceMap.sources.indexOf(\n originalPosition.source!\n )\n ignored =\n applicableSourceMap.ignoreList?.includes(sourceIndex) ??\n // When sourcemap is not available, fallback to checking `frame.file`.\n // e.g. In pages router, nextjs server code is not bundled into the page.\n shouldIgnorePath(frame.file)\n }\n\n const originalStackFrame: IgnorableStackFrame = {\n methodName:\n // We ignore the sourcemapped name since it won't be the correct name.\n // The callsite will point to the column of the variable name instead of the\n // name of the enclosing function.\n // TODO(NDX-531): Spy on prepareStackTrace to get the enclosing line number for method name mapping.\n frame.methodName\n ?.replace('__WEBPACK_DEFAULT_EXPORT__', 'default')\n ?.replace('__webpack_exports__.', '') || '<unknown>',\n column: (originalPosition.column ?? 0) + 1,\n file: originalPosition.source,\n lineNumber: originalPosition.line ?? 0,\n // TODO: c&p from async createOriginalStackFrame but why not frame.arguments?\n arguments: [],\n ignored,\n }\n\n return {\n frame: originalStackFrame,\n source: sourceContent,\n }\n }\n }\n\n return undefined\n}\n\nasync function createOriginalStackFrame(\n project: Project,\n projectPath: string,\n frame: TurbopackStackFrame\n): Promise<OriginalStackFrameResponse | null> {\n const traced =\n (await nativeTraceSource(frame)) ??\n // TODO(veil): When would the bundler know more than native?\n // If it's faster, try the bundler first and fall back to native later.\n (await batchedTraceSource(project, frame))\n if (!traced) {\n return null\n }\n\n let normalizedStackFrameLocation = traced.frame.file\n if (\n normalizedStackFrameLocation !== null &&\n normalizedStackFrameLocation.startsWith('file://')\n ) {\n normalizedStackFrameLocation = path.relative(\n projectPath,\n url.fileURLToPath(normalizedStackFrameLocation)\n )\n }\n\n return {\n originalStackFrame: {\n arguments: traced.frame.arguments,\n column: traced.frame.column,\n file: normalizedStackFrameLocation,\n ignored: traced.frame.ignored,\n lineNumber: traced.frame.lineNumber,\n methodName: traced.frame.methodName,\n },\n originalCodeFrame: getOriginalCodeFrame(traced.frame, traced.source),\n }\n}\n\nexport function getOverlayMiddleware(project: Project, projectPath: string) {\n return async function (\n req: IncomingMessage,\n res: ServerResponse,\n next: () => void\n ): Promise<void> {\n const { pathname, searchParams } = new URL(req.url!, 'http://n')\n\n if (pathname === '/__nextjs_original-stack-frames') {\n if (req.method !== 'POST') {\n return middlewareResponse.badRequest(res)\n }\n\n const body = await new Promise<string>((resolve, reject) => {\n let data = ''\n req.on('data', (chunk) => {\n data += chunk\n })\n req.on('end', () => resolve(data))\n req.on('error', reject)\n })\n\n const request = JSON.parse(body) as OriginalStackFramesRequest\n const stackFrames = createStackFrames(request)\n const result: OriginalStackFramesResponse = await Promise.all(\n stackFrames.map(async (frame) => {\n try {\n const stackFrame = await createOriginalStackFrame(\n project,\n projectPath,\n frame\n )\n if (stackFrame === null) {\n return {\n status: 'rejected',\n reason: 'Failed to create original stack frame',\n }\n }\n return { status: 'fulfilled', value: stackFrame }\n } catch (error) {\n return {\n status: 'rejected',\n reason: inspect(error, { colors: false }),\n }\n }\n })\n )\n\n return middlewareResponse.json(res, result)\n } else if (pathname === '/__nextjs_launch-editor') {\n const frame = createStackFrame(searchParams)\n\n if (!frame) return middlewareResponse.badRequest(res)\n\n const fileExists = await fs.access(frame.file, FS.F_OK).then(\n () => true,\n () => false\n )\n if (!fileExists) return middlewareResponse.notFound(res)\n\n try {\n launchEditor(frame.file, frame.line ?? 1, frame.column ?? 1)\n } catch (err) {\n console.log('Failed to launch editor:', err)\n return middlewareResponse.internalServerError(res)\n }\n\n return middlewareResponse.noContent(res)\n }\n\n return next()\n }\n}\n\nexport function getSourceMapMiddleware(project: Project) {\n return async function (\n req: IncomingMessage,\n res: ServerResponse,\n next: () => void\n ): Promise<void> {\n const { pathname, searchParams } = new URL(req.url!, 'http://n')\n\n if (pathname !== '/__nextjs_source-map') {\n return next()\n }\n\n let filename = searchParams.get('filename')\n\n if (!filename) {\n return middlewareResponse.badRequest(res)\n }\n\n // TODO(veil): Always try the native version first.\n // Externals could also be files that aren't bundled via Webpack.\n if (\n filename.startsWith('webpack://') ||\n filename.startsWith('webpack-internal:///')\n ) {\n const sourceMap = findSourceMap(filename)\n\n if (sourceMap) {\n return middlewareResponse.json(res, sourceMap.payload)\n }\n\n return middlewareResponse.noContent(res)\n }\n\n try {\n // Turbopack chunk filenames might be URL-encoded.\n filename = decodeURI(filename)\n\n if (path.isAbsolute(filename)) {\n filename = url.pathToFileURL(filename).href\n }\n\n const sourceMapString = await project.getSourceMap(filename)\n\n if (sourceMapString) {\n return middlewareResponse.jsonString(res, sourceMapString)\n }\n\n if (filename.startsWith('file:')) {\n const sourceMap = await getSourceMapFromFile(filename)\n\n if (sourceMap) {\n return middlewareResponse.json(res, sourceMap)\n }\n }\n } catch (error) {\n console.error('Failed to get source map:', error)\n }\n\n middlewareResponse.noContent(res)\n }\n}\n"],"names":["getOriginalCodeFrame","middlewareResponse","fs","constants","FS","path","url","launchEditor","SourceMapConsumer","getSourceMapFromFile","findSourceMap","pathToFileURL","inspect","shouldIgnorePath","modulePath","includes","startsWith","currentSourcesByFile","Map","batchedTraceSource","project","frame","file","decodeURIComponent","undefined","lineNumber","line","column","methodName","ignored","arguments","source","currentDirectoryFileUrl","process","cwd","href","sourceFrame","traceSource","originalFile","isInternal","sourcePromise","get","getSourceForAsset","set","setTimeout","delete","ignorableFrame","parseFile","fileParam","replace","createStackFrames","body","frames","isServer","map","filter","f","createStackFrame","searchParams","parseInt","findApplicableSourceMapPayload","payload","frameLine","frameColumn","section","sections","i","length","offset","nativeTraceSource","sourceURL","sourceMapPayload","cause","Error","consumer","traced","originalPosition","originalPositionFor","sourceContent","sourceContentFor","destroy","applicableSourceMap","console","error","sourceIndex","sources","indexOf","ignoreList","originalStackFrame","createOriginalStackFrame","projectPath","normalizedStackFrameLocation","relative","fileURLToPath","originalCodeFrame","getOverlayMiddleware","req","res","next","pathname","URL","method","badRequest","Promise","resolve","reject","data","on","chunk","request","JSON","parse","stackFrames","result","all","stackFrame","status","reason","value","colors","json","fileExists","access","F_OK","then","notFound","err","log","internalServerError","noContent","getSourceMapMiddleware","filename","sourceMap","decodeURI","isAbsolute","sourceMapString","getSourceMap","jsonString"],"mappings":"AACA,SACEA,oBAAoB,QAIf,WAAU;AACjB,SAASC,kBAAkB,QAAQ,wBAAuB;AAC1D,OAAOC,MAAMC,aAAaC,EAAE,QAAQ,cAAa;AACjD,OAAOC,UAAU,OAAM;AACvB,OAAOC,SAAS,MAAK;AACrB,SAASC,YAAY,QAAQ,yBAAwB;AAErD,SACEC,iBAAiB,QAGZ,kCAAiC;AAExC,SAASC,oBAAoB,QAAQ,oCAAmC;AACxE,SAASC,aAAa,QAA+B,cAAa;AAClE,SAASC,aAAa,QAAQ,WAAU;AACxC,SAASC,OAAO,QAAQ,YAAW;AAEnC,SAASC,iBAAiBC,UAAkB;IAC1C,OACEA,WAAWC,QAAQ,CAAC,mBACpB,2EAA2E;IAC3ED,WAAWC,QAAQ,CAAC,gBACpBD,WAAWE,UAAU,CAAC;AAE1B;AAIA,MAAMC,uBAA4D,IAAIC;AACtE,eAAeC,mBACbC,OAAgB,EAChBC,KAA0B;IAE1B,MAAMC,OAAOD,MAAMC,IAAI,GAEnBC,mBAAmBF,MAAMC,IAAI,IAC7BE;IAEJ,IAAI,CAACF,MAAM;IAEX,yFAAyF;IACzF,iHAAiH;IACjH,IAAIA,KAAKN,UAAU,CAAC,UAAU;YAIZK,aACJA,eACIA;QALhB,OAAO;YACLA,OAAO;gBACLC;gBACAG,YAAYJ,CAAAA,cAAAA,MAAMK,IAAI,YAAVL,cAAc;gBAC1BM,QAAQN,CAAAA,gBAAAA,MAAMM,MAAM,YAAZN,gBAAgB;gBACxBO,YAAYP,CAAAA,oBAAAA,MAAMO,UAAU,YAAhBP,oBAAoB;gBAChCQ,SAAS;gBACTC,WAAW,EAAE;YACf;YACAC,QAAQ;QACV;IACF;IAEA,MAAMC,0BAA0BrB,cAAcsB,QAAQC,GAAG,IAAIC,IAAI;IAEjE,MAAMC,cAAc,MAAMhB,QAAQiB,WAAW,CAAChB,OAAOW;IACrD,IAAI,CAACI,aAAa;YAIAf,cACJA,gBACIA;QALhB,OAAO;YACLA,OAAO;gBACLC;gBACAG,YAAYJ,CAAAA,eAAAA,MAAMK,IAAI,YAAVL,eAAc;gBAC1BM,QAAQN,CAAAA,iBAAAA,MAAMM,MAAM,YAAZN,iBAAgB;gBACxBO,YAAYP,CAAAA,qBAAAA,MAAMO,UAAU,YAAhBP,qBAAoB;gBAChCQ,SAAShB,iBAAiBS;gBAC1BQ,WAAW,EAAE;YACf;YACAC,QAAQ;QACV;IACF;IAEA,IAAIA,SAAS;IACb,MAAMO,eAAeF,YAAYE,YAAY;IAE7C,8FAA8F;IAC9F,MAAMT,UACJhB,iBAAiByB,uBAAAA,eAAgBF,YAAYd,IAAI,KACjD,iEAAiE;IACjE,CAAC,CAACc,YAAYG,UAAU;IAC1B,IAAID,gBAAgB,CAACT,SAAS;QAC5B,IAAIW,gBAAgBvB,qBAAqBwB,GAAG,CAACH;QAC7C,IAAI,CAACE,eAAe;YAClBA,gBAAgBpB,QAAQsB,iBAAiB,CAACJ;YAC1CrB,qBAAqB0B,GAAG,CAACL,cAAcE;YACvCI,WAAW;gBACT,sEAAsE;gBACtE,0BAA0B;gBAC1B3B,qBAAqB4B,MAAM,CAACP;YAC9B,GAAG;QACL;QACAP,SAAS,MAAMS;IACjB;QAKcJ,mBACJA,qBAEN,sEAAsE;IACtE,4EAA4E;IAC5E,kCAAkC;IAClC,oGAAoG;IACpGf;IAVJ,kDAAkD;IAClD,MAAMyB,iBAAiB;QACrBxB,MAAMc,YAAYd,IAAI;QACtBG,YAAYW,CAAAA,oBAAAA,YAAYV,IAAI,YAAhBU,oBAAoB;QAChCT,QAAQS,CAAAA,sBAAAA,YAAYT,MAAM,YAAlBS,sBAAsB;QAC9BR,YAKEP,CAAAA,qBAAAA,MAAMO,UAAU,YAAhBP,qBAAoB;QACtBQ;QACAC,WAAW,EAAE;IACf;IAEA,OAAO;QACLT,OAAOyB;QACPf;IACF;AACF;AACA,SAASgB,UAAUC,SAAwB;IACzC,IAAI,CAACA,WAAW;QACd,OAAOxB;IACT;IAEA,+DAA+D;IAC/D,OAAOwB,UAAUC,OAAO,CAAC,2BAA2B,IAAIA,OAAO,CAAC,UAAU;AAC5E;AAEA,SAASC,kBACPC,IAAgC;IAEhC,MAAM,EAAEC,MAAM,EAAEC,QAAQ,EAAE,GAAGF;IAE7B,OAAOC,OACJE,GAAG,CAAC,CAACjC;QACJ,MAAMC,OAAOyB,UAAU1B,MAAMC,IAAI;QAEjC,IAAI,CAACA,MAAM;YACT,OAAOE;QACT;YAIcH,mBACNA,mBACEA;QAJV,OAAO;YACLC;YACAM,YAAYP,CAAAA,oBAAAA,MAAMO,UAAU,YAAhBP,oBAAoB;YAChCK,MAAML,CAAAA,oBAAAA,MAAMI,UAAU,YAAhBJ,oBAAoB;YAC1BM,QAAQN,CAAAA,gBAAAA,MAAMM,MAAM,YAAZN,gBAAgB;YACxBgC;QACF;IACF,GACCE,MAAM,CAAC,CAACC,IAAgCA,MAAMhC;AACnD;AAEA,SAASiC,iBACPC,YAA6B;IAE7B,MAAMpC,OAAOyB,UAAUW,aAAajB,GAAG,CAAC;IAExC,IAAI,CAACnB,MAAM;QACT,OAAOE;IACT;QAIckC,mBACGA,oBACEA;IAJnB,OAAO;QACLpC;QACAM,YAAY8B,CAAAA,oBAAAA,aAAajB,GAAG,CAAC,yBAAjBiB,oBAAkC;QAC9ChC,MAAMiC,SAASD,CAAAA,qBAAAA,aAAajB,GAAG,CAAC,yBAAjBiB,qBAAkC,KAAK,OAAO;QAC7D/B,QAAQgC,SAASD,CAAAA,qBAAAA,aAAajB,GAAG,CAAC,qBAAjBiB,qBAA8B,KAAK,OAAO;QAC3DL,UAAUK,aAAajB,GAAG,CAAC,gBAAgB;IAC7C;AACF;AA0BA;;;CAGC,GACD,SAASmB,+BACPvC,KAA0B,EAC1BwC,OAA+B;IAE/B,IAAI,cAAcA,SAAS;YACPxC;QAAlB,MAAMyC,YAAYzC,CAAAA,cAAAA,MAAMK,IAAI,YAAVL,cAAc;YACZA;QAApB,MAAM0C,cAAc1C,CAAAA,gBAAAA,MAAMM,MAAM,YAAZN,gBAAgB;QACpC,2FAA2F;QAC3F,uGAAuG;QACvG,4BAA4B;QAC5B,IAAI2C,UAA6CH,QAAQI,QAAQ,CAAC,EAAE;QACpE,IACE,IAAIC,IAAI,GACRA,IAAIL,QAAQI,QAAQ,CAACE,MAAM,IAC3BN,QAAQI,QAAQ,CAACC,EAAE,CAACE,MAAM,CAAC1C,IAAI,IAAIoC,aACnCD,QAAQI,QAAQ,CAACC,EAAE,CAACE,MAAM,CAACzC,MAAM,IAAIoC,aACrCG,IACA;YACAF,UAAUH,QAAQI,QAAQ,CAACC,EAAE;QAC/B;QAEA,OAAOF,YAAYxC,YAAYA,YAAYwC,QAAQV,GAAG;IACxD,OAAO;QACL,OAAOO;IACT;AACF;AAEA;;CAEC,GACD,eAAeQ,kBACbhD,KAA0B;IAE1B,MAAMiD,YACJ/C,mBAAmBF,MAAMC,IAAI;IAC/B,IAAIiD;IACJ,IAAI;YACiB7D;QAAnB6D,oBAAmB7D,iBAAAA,cAAc4D,+BAAd5D,eAA0BmD,OAAO;IACtD,EAAE,OAAOW,OAAO;QACd,MAAM,qBAGL,CAHK,IAAIC,MACR,AAAC,KAAEH,YAAU,4FACb;YAAEE;QAAM,IAFJ,qBAAA;mBAAA;wBAAA;0BAAA;QAGN;IACF;IAEA,IAAID,qBAAqB/C,WAAW;QAClC,IAAIkD;QACJ,IAAI;YACFA,WAAW,MAAM,IAAIlE,kBAAkB+D;QACzC,EAAE,OAAOC,OAAO;YACd,MAAM,qBAGL,CAHK,IAAIC,MACR,AAAC,KAAEH,YAAU,4FACb;gBAAEE;YAAM,IAFJ,qBAAA;uBAAA;4BAAA;8BAAA;YAGN;QACF;QACA,IAAIG;QAIJ,IAAI;gBAEMtD,aAEGA;YAHX,MAAMuD,mBAAmBF,SAASG,mBAAmB,CAAC;gBACpDnD,MAAML,CAAAA,cAAAA,MAAMK,IAAI,YAAVL,cAAc;gBACpB,mDAAmD;gBACnDM,QAAQ,AAACN,CAAAA,CAAAA,gBAAAA,MAAMM,MAAM,YAAZN,gBAAgB,CAAA,IAAK;YAChC;YAEA,IAAIuD,iBAAiB7C,MAAM,KAAK,MAAM;gBACpC4C,SAAS;YACX,OAAO;oBAEHD;gBADF,MAAMI,gBACJJ,CAAAA,6BAAAA,SAASK,gBAAgB,CACvBH,iBAAiB7C,MAAM,EACvB,uBAAuB,GAAG,iBAF5B2C,6BAGK;gBAEPC,SAAS;oBAAEC;oBAAkBE;gBAAc;YAC7C;QACF,SAAU;YACRJ,SAASM,OAAO;QAClB;QAEA,IAAIL,WAAW,MAAM;gBA4Bf,sEAAsE;YACtE,4EAA4E;YAC5E,kCAAkC;YAClC,oGAAoG;YACpGtD,2BAAAA;YA/BJ,MAAM,EAAEuD,gBAAgB,EAAEE,aAAa,EAAE,GAAGH;YAC5C,MAAMM,sBAAsBrB,+BAC1BvC,OACAkD;YAGF,0GAA0G;YAC1G,IAAI1C,UAAU;YACd,IAAIoD,wBAAwBzD,WAAW;gBACrC0D,QAAQC,KAAK,CACX,wDACA9D;YAEJ,OAAO;oBAMH4D;gBALF,wDAAwD;gBACxD,MAAMG,cAAcH,oBAAoBI,OAAO,CAACC,OAAO,CACrDV,iBAAiB7C,MAAM;oBAGvBkD;gBADFpD,UACEoD,CAAAA,4CAAAA,kCAAAA,oBAAoBM,UAAU,qBAA9BN,gCAAgClE,QAAQ,CAACqE,wBAAzCH,2CACA,sEAAsE;gBACtE,yEAAyE;gBACzEpE,iBAAiBQ,MAAMC,IAAI;YAC/B;gBAWWsD,0BAEGA;YAXd,MAAMY,qBAA0C;gBAC9C5D,YAKEP,EAAAA,oBAAAA,MAAMO,UAAU,sBAAhBP,4BAAAA,kBACI4B,OAAO,CAAC,8BAA8B,+BAD1C5B,0BAEI4B,OAAO,CAAC,wBAAwB,QAAO;gBAC7CtB,QAAQ,AAACiD,CAAAA,CAAAA,2BAAAA,iBAAiBjD,MAAM,YAAvBiD,2BAA2B,CAAA,IAAK;gBACzCtD,MAAMsD,iBAAiB7C,MAAM;gBAC7BN,YAAYmD,CAAAA,yBAAAA,iBAAiBlD,IAAI,YAArBkD,yBAAyB;gBACrC,6EAA6E;gBAC7E9C,WAAW,EAAE;gBACbD;YACF;YAEA,OAAO;gBACLR,OAAOmE;gBACPzD,QAAQ+C;YACV;QACF;IACF;IAEA,OAAOtD;AACT;AAEA,eAAeiE,yBACbrE,OAAgB,EAChBsE,WAAmB,EACnBrE,KAA0B;QAGvB;IADH,MAAMsD,SACJ,CAAC,OAAA,MAAMN,kBAAkBhD,kBAAxB,OACD,4DAA4D;IAC5D,uEAAuE;IACtE,MAAMF,mBAAmBC,SAASC;IACrC,IAAI,CAACsD,QAAQ;QACX,OAAO;IACT;IAEA,IAAIgB,+BAA+BhB,OAAOtD,KAAK,CAACC,IAAI;IACpD,IACEqE,iCAAiC,QACjCA,6BAA6B3E,UAAU,CAAC,YACxC;QACA2E,+BAA+BtF,KAAKuF,QAAQ,CAC1CF,aACApF,IAAIuF,aAAa,CAACF;IAEtB;IAEA,OAAO;QACLH,oBAAoB;YAClB1D,WAAW6C,OAAOtD,KAAK,CAACS,SAAS;YACjCH,QAAQgD,OAAOtD,KAAK,CAACM,MAAM;YAC3BL,MAAMqE;YACN9D,SAAS8C,OAAOtD,KAAK,CAACQ,OAAO;YAC7BJ,YAAYkD,OAAOtD,KAAK,CAACI,UAAU;YACnCG,YAAY+C,OAAOtD,KAAK,CAACO,UAAU;QACrC;QACAkE,mBAAmB9F,qBAAqB2E,OAAOtD,KAAK,EAAEsD,OAAO5C,MAAM;IACrE;AACF;AAEA,OAAO,SAASgE,qBAAqB3E,OAAgB,EAAEsE,WAAmB;IACxE,OAAO,eACLM,GAAoB,EACpBC,GAAmB,EACnBC,IAAgB;QAEhB,MAAM,EAAEC,QAAQ,EAAEzC,YAAY,EAAE,GAAG,IAAI0C,IAAIJ,IAAI1F,GAAG,EAAG;QAErD,IAAI6F,aAAa,mCAAmC;YAClD,IAAIH,IAAIK,MAAM,KAAK,QAAQ;gBACzB,OAAOpG,mBAAmBqG,UAAU,CAACL;YACvC;YAEA,MAAM9C,OAAO,MAAM,IAAIoD,QAAgB,CAACC,SAASC;gBAC/C,IAAIC,OAAO;gBACXV,IAAIW,EAAE,CAAC,QAAQ,CAACC;oBACdF,QAAQE;gBACV;gBACAZ,IAAIW,EAAE,CAAC,OAAO,IAAMH,QAAQE;gBAC5BV,IAAIW,EAAE,CAAC,SAASF;YAClB;YAEA,MAAMI,UAAUC,KAAKC,KAAK,CAAC5D;YAC3B,MAAM6D,cAAc9D,kBAAkB2D;YACtC,MAAMI,SAAsC,MAAMV,QAAQW,GAAG,CAC3DF,YAAY1D,GAAG,CAAC,OAAOjC;gBACrB,IAAI;oBACF,MAAM8F,aAAa,MAAM1B,yBACvBrE,SACAsE,aACArE;oBAEF,IAAI8F,eAAe,MAAM;wBACvB,OAAO;4BACLC,QAAQ;4BACRC,QAAQ;wBACV;oBACF;oBACA,OAAO;wBAAED,QAAQ;wBAAaE,OAAOH;oBAAW;gBAClD,EAAE,OAAOhC,OAAO;oBACd,OAAO;wBACLiC,QAAQ;wBACRC,QAAQzG,QAAQuE,OAAO;4BAAEoC,QAAQ;wBAAM;oBACzC;gBACF;YACF;YAGF,OAAOtH,mBAAmBuH,IAAI,CAACvB,KAAKgB;QACtC,OAAO,IAAId,aAAa,2BAA2B;YACjD,MAAM9E,QAAQoC,iBAAiBC;YAE/B,IAAI,CAACrC,OAAO,OAAOpB,mBAAmBqG,UAAU,CAACL;YAEjD,MAAMwB,aAAa,MAAMvH,GAAGwH,MAAM,CAACrG,MAAMC,IAAI,EAAElB,GAAGuH,IAAI,EAAEC,IAAI,CAC1D,IAAM,MACN,IAAM;YAER,IAAI,CAACH,YAAY,OAAOxH,mBAAmB4H,QAAQ,CAAC5B;YAEpD,IAAI;oBACuB5E,aAAiBA;gBAA1Cd,aAAac,MAAMC,IAAI,EAAED,CAAAA,cAAAA,MAAMK,IAAI,YAAVL,cAAc,GAAGA,CAAAA,gBAAAA,MAAMM,MAAM,YAAZN,gBAAgB;YAC5D,EAAE,OAAOyG,KAAK;gBACZ5C,QAAQ6C,GAAG,CAAC,4BAA4BD;gBACxC,OAAO7H,mBAAmB+H,mBAAmB,CAAC/B;YAChD;YAEA,OAAOhG,mBAAmBgI,SAAS,CAAChC;QACtC;QAEA,OAAOC;IACT;AACF;AAEA,OAAO,SAASgC,uBAAuB9G,OAAgB;IACrD,OAAO,eACL4E,GAAoB,EACpBC,GAAmB,EACnBC,IAAgB;QAEhB,MAAM,EAAEC,QAAQ,EAAEzC,YAAY,EAAE,GAAG,IAAI0C,IAAIJ,IAAI1F,GAAG,EAAG;QAErD,IAAI6F,aAAa,wBAAwB;YACvC,OAAOD;QACT;QAEA,IAAIiC,WAAWzE,aAAajB,GAAG,CAAC;QAEhC,IAAI,CAAC0F,UAAU;YACb,OAAOlI,mBAAmBqG,UAAU,CAACL;QACvC;QAEA,mDAAmD;QACnD,iEAAiE;QACjE,IACEkC,SAASnH,UAAU,CAAC,iBACpBmH,SAASnH,UAAU,CAAC,yBACpB;YACA,MAAMoH,YAAY1H,cAAcyH;YAEhC,IAAIC,WAAW;gBACb,OAAOnI,mBAAmBuH,IAAI,CAACvB,KAAKmC,UAAUvE,OAAO;YACvD;YAEA,OAAO5D,mBAAmBgI,SAAS,CAAChC;QACtC;QAEA,IAAI;YACF,kDAAkD;YAClDkC,WAAWE,UAAUF;YAErB,IAAI9H,KAAKiI,UAAU,CAACH,WAAW;gBAC7BA,WAAW7H,IAAIK,aAAa,CAACwH,UAAUhG,IAAI;YAC7C;YAEA,MAAMoG,kBAAkB,MAAMnH,QAAQoH,YAAY,CAACL;YAEnD,IAAII,iBAAiB;gBACnB,OAAOtI,mBAAmBwI,UAAU,CAACxC,KAAKsC;YAC5C;YAEA,IAAIJ,SAASnH,UAAU,CAAC,UAAU;gBAChC,MAAMoH,YAAY,MAAM3H,qBAAqB0H;gBAE7C,IAAIC,WAAW;oBACb,OAAOnI,mBAAmBuH,IAAI,CAACvB,KAAKmC;gBACtC;YACF;QACF,EAAE,OAAOjD,OAAO;YACdD,QAAQC,KAAK,CAAC,6BAA6BA;QAC7C;QAEAlF,mBAAmBgI,SAAS,CAAChC;IAC/B;AACF"}
@@ -301,10 +301,14 @@ async function getOriginalStackFrame(param) {
301
301
  return compilations;
302
302
  }
303
303
  });
304
+ let defaultNormalizedStackFrameLocation = frame.file;
305
+ if (defaultNormalizedStackFrameLocation !== null && defaultNormalizedStackFrameLocation.startsWith('file://')) {
306
+ defaultNormalizedStackFrameLocation = path.relative(rootDirectory, fileURLToPath(defaultNormalizedStackFrameLocation));
307
+ }
304
308
  var _frame_column;
305
309
  // This stack frame is used for the one that couldn't locate the source or source mapped frame
306
310
  const defaultStackFrame = {
307
- file: frame.file,
311
+ file: defaultNormalizedStackFrameLocation,
308
312
  lineNumber: frame.lineNumber,
309
313
  column: (_frame_column = frame.column) != null ? _frame_column : 1,
310
314
  methodName: frame.methodName,
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../../../src/client/components/react-dev-overlay/server/middleware-webpack.ts"],"sourcesContent":["import { constants as FS, promises as fs } from 'fs'\nimport { findSourceMap, type SourceMap } from 'module'\nimport path from 'path'\nimport { fileURLToPath, pathToFileURL } from 'url'\nimport {\n SourceMapConsumer,\n type BasicSourceMapConsumer,\n} from 'next/dist/compiled/source-map08'\nimport type { StackFrame } from 'next/dist/compiled/stacktrace-parser'\nimport { getSourceMapFromFile } from '../utils/get-source-map-from-file'\nimport { launchEditor } from '../utils/launch-editor'\nimport {\n getOriginalCodeFrame,\n type OriginalStackFrameResponse,\n type OriginalStackFramesRequest,\n type OriginalStackFramesResponse,\n} from './shared'\nimport { middlewareResponse } from './middleware-response'\nexport { getServerError } from '../utils/node-stack-frames'\nexport { parseStack } from '../utils/parse-stack'\nexport { getSourceMapFromFile }\n\nimport type { IncomingMessage, ServerResponse } from 'http'\nimport type webpack from 'webpack'\nimport type {\n NullableMappedPosition,\n RawSourceMap,\n} from 'next/dist/compiled/source-map08'\nimport { formatFrameSourceFile } from '../utils/webpack-module-path'\nimport type { MappedPosition } from 'source-map'\nimport { inspect } from 'util'\n\nfunction shouldIgnoreSource(sourceURL: string): boolean {\n return (\n sourceURL.includes('node_modules') ||\n // Only relevant for when Next.js is symlinked e.g. in the Next.js monorepo\n sourceURL.includes('next/dist') ||\n sourceURL.startsWith('node:')\n )\n}\n\ntype IgnoredSources = Array<{ url: string; ignored: boolean }>\n\nexport interface IgnorableStackFrame extends StackFrame {\n ignored: boolean\n}\n\ntype SourceAttributes = {\n sourcePosition: NullableMappedPosition\n sourceContent: string | null\n}\n\ntype Source =\n | {\n type: 'file'\n sourceMap: RawSourceMap\n ignoredSources: IgnoredSources\n moduleURL: string\n }\n | {\n type: 'bundle'\n sourceMap: RawSourceMap\n ignoredSources: IgnoredSources\n compilation: webpack.Compilation\n moduleId: string\n moduleURL: string\n }\n\nfunction getModuleById(\n id: string | undefined,\n compilation: webpack.Compilation\n) {\n const { chunkGraph, modules } = compilation\n\n return [...modules].find((module) => chunkGraph.getModuleId(module) === id)\n}\n\nfunction findModuleNotFoundFromError(errorMessage: string | undefined) {\n return errorMessage?.match(/'([^']+)' module/)?.[1]\n}\n\nfunction getSourcePath(source: string) {\n if (source.startsWith('file://')) {\n return fileURLToPath(source)\n }\n return source.replace(/^(webpack:\\/\\/\\/|webpack:\\/\\/|webpack:\\/\\/_N_E\\/)/, '')\n}\n\n/**\n * @returns 1-based lines and 0-based columns\n */\nasync function findOriginalSourcePositionAndContent(\n sourceMap: RawSourceMap,\n position: { lineNumber: number | null; column: number | null }\n): Promise<SourceAttributes | null> {\n let consumer: BasicSourceMapConsumer\n try {\n consumer = await new SourceMapConsumer(sourceMap)\n } catch (cause) {\n throw new Error(\n `${sourceMap.file}: Invalid source map. Only conformant source maps can be used to find the original code.`,\n { cause }\n )\n }\n\n try {\n const sourcePosition = consumer.originalPositionFor({\n line: position.lineNumber ?? 1,\n // 0-based columns out requires 0-based columns in.\n column: (position.column ?? 1) - 1,\n })\n\n if (!sourcePosition.source) {\n return null\n }\n\n const sourceContent: string | null =\n consumer.sourceContentFor(\n sourcePosition.source,\n /* returnNullOnMissing */ true\n ) ?? null\n\n return {\n sourcePosition,\n sourceContent,\n }\n } finally {\n consumer.destroy()\n }\n}\n\nexport function getIgnoredSources(\n sourceMap: RawSourceMap & { ignoreList?: number[] }\n): IgnoredSources {\n const ignoreList = new Set<number>(sourceMap.ignoreList ?? [])\n const moduleFilenames = sourceMap?.sources ?? []\n\n for (let index = 0; index < moduleFilenames.length; index++) {\n // bundlerFilePath case: webpack://./app/page.tsx\n const webpackSourceURL = moduleFilenames[index]\n // Format the path to the normal file path\n const formattedFilePath = formatFrameSourceFile(webpackSourceURL)\n if (shouldIgnoreSource(formattedFilePath)) {\n ignoreList.add(index)\n }\n }\n\n const ignoredSources = sourceMap.sources.map((source, index) => {\n return {\n url: source,\n ignored: ignoreList.has(sourceMap.sources.indexOf(source)),\n content: sourceMap.sourcesContent?.[index] ?? null,\n }\n })\n return ignoredSources\n}\n\nfunction isIgnoredSource(\n source: Source,\n sourcePosition: MappedPosition | NullableMappedPosition\n) {\n if (sourcePosition.source == null) {\n return true\n }\n for (const ignoredSource of source.ignoredSources) {\n if (ignoredSource.ignored && ignoredSource.url === sourcePosition.source) {\n return true\n }\n }\n\n return false\n}\n\nfunction findOriginalSourcePositionAndContentFromCompilation(\n moduleId: string | undefined,\n importedModule: string,\n compilation: webpack.Compilation\n): SourceAttributes | null {\n const module = getModuleById(moduleId, compilation)\n return module?.buildInfo?.importLocByPath?.get(importedModule) ?? null\n}\n\nexport async function createOriginalStackFrame({\n source,\n rootDirectory,\n frame,\n errorMessage,\n}: {\n source: Source\n rootDirectory: string\n frame: StackFrame\n errorMessage?: string\n}): Promise<OriginalStackFrameResponse | null> {\n const moduleNotFound = findModuleNotFoundFromError(errorMessage)\n const result = await (() => {\n if (moduleNotFound) {\n if (source.type === 'file') {\n return undefined\n }\n\n return findOriginalSourcePositionAndContentFromCompilation(\n source.moduleId,\n moduleNotFound,\n source.compilation\n )\n }\n return findOriginalSourcePositionAndContent(source.sourceMap, frame)\n })()\n\n if (!result) {\n return null\n }\n const { sourcePosition, sourceContent } = result\n\n if (!sourcePosition.source) {\n return null\n }\n\n const ignored =\n isIgnoredSource(source, sourcePosition) ||\n // If the source file is externals, should be excluded even it's not ignored source.\n // e.g. webpack://next/dist/.. needs to be ignored\n shouldIgnoreSource(source.moduleURL)\n\n const sourcePath = getSourcePath(\n // When sourcePosition.source is the loader path the modulePath is generally better.\n (sourcePosition.source!.includes('|')\n ? source.moduleURL\n : sourcePosition.source) || source.moduleURL\n )\n const filePath = path.resolve(rootDirectory, sourcePath)\n const resolvedFilePath = path.relative(rootDirectory, filePath)\n\n const traced: IgnorableStackFrame = {\n file: resolvedFilePath,\n lineNumber: sourcePosition.line,\n column: (sourcePosition.column ?? 0) + 1,\n methodName:\n // We ignore the sourcemapped name since it won't be the correct name.\n // The callsite will point to the column of the variable name instead of the\n // name of the enclosing function.\n // TODO(NDX-531): Spy on prepareStackTrace to get the enclosing line number for method name mapping.\n // default is not a valid identifier in JS so webpack uses a custom variable when it's an unnamed default export\n // Resolve it back to `default` for the method name if the source position didn't have the method.\n frame.methodName\n ?.replace('__WEBPACK_DEFAULT_EXPORT__', 'default')\n ?.replace('__webpack_exports__.', ''),\n arguments: [],\n ignored,\n }\n\n return {\n originalStackFrame: traced,\n originalCodeFrame: getOriginalCodeFrame(traced, sourceContent),\n }\n}\n\nasync function getSourceMapFromCompilation(\n id: string,\n compilation: webpack.Compilation\n): Promise<RawSourceMap | undefined> {\n try {\n const module = getModuleById(id, compilation)\n\n if (!module) {\n return undefined\n }\n\n // @ts-expect-error The types for `CodeGenerationResults.get` require a\n // runtime to be passed as second argument, but apparently it also works\n // without it.\n const codeGenerationResult = compilation.codeGenerationResults.get(module)\n const source = codeGenerationResult?.sources.get('javascript')\n\n return source?.map() ?? undefined\n } catch (err) {\n console.error(`Failed to lookup module by ID (\"${id}\"):`, err)\n return undefined\n }\n}\n\nasync function getSource(\n sourceURL: string,\n options: {\n getCompilations: () => webpack.Compilation[]\n }\n): Promise<Source | undefined> {\n const { getCompilations } = options\n\n // Rspack is now using file:// URLs for source maps. Remove the rsc prefix to produce the file:/// url.\n sourceURL = sourceURL.replace(/(.*)\\/(?=file:\\/\\/)/, '')\n\n let nativeSourceMap: SourceMap | undefined\n try {\n nativeSourceMap = findSourceMap(sourceURL)\n } catch (cause) {\n throw new Error(\n `${sourceURL}: Invalid source map. Only conformant source maps can be used to find the original code.`,\n { cause }\n )\n }\n\n if (nativeSourceMap !== undefined) {\n const sourceMapPayload = nativeSourceMap.payload\n return {\n type: 'file',\n sourceMap: sourceMapPayload,\n ignoredSources: getIgnoredSources(sourceMapPayload),\n moduleURL: sourceURL,\n }\n }\n\n if (path.isAbsolute(sourceURL)) {\n sourceURL = pathToFileURL(sourceURL).href\n }\n\n if (sourceURL.startsWith('file:')) {\n const sourceMap = await getSourceMapFromFile(sourceURL)\n return sourceMap\n ? {\n type: 'file',\n sourceMap,\n ignoredSources: getIgnoredSources(sourceMap),\n moduleURL: sourceURL,\n }\n : undefined\n }\n\n // webpack-internal:///./src/hello.tsx => ./src/hello.tsx\n // rsc://React/Server/webpack-internal:///(rsc)/./src/hello.tsx?42 => (rsc)/./src/hello.tsx\n // webpack://_N_E/./src/hello.tsx => ./src/hello.tsx\n const moduleId = sourceURL\n .replace(\n /^(rsc:\\/\\/React\\/[^/]+\\/)?(webpack-internal:\\/\\/\\/|webpack:\\/\\/(_N_E\\/)?)/,\n ''\n )\n .replace(/\\?\\d+$/, '')\n\n // (rsc)/./src/hello.tsx => ./src/hello.tsx\n const moduleURL = moduleId.replace(/^(\\(.*\\)\\/?)/, '')\n\n for (const compilation of getCompilations()) {\n const sourceMap = await getSourceMapFromCompilation(moduleId, compilation)\n\n if (sourceMap) {\n const ignoredSources = getIgnoredSources(sourceMap)\n return {\n type: 'bundle',\n sourceMap,\n compilation,\n moduleId,\n moduleURL,\n ignoredSources,\n }\n }\n }\n\n return undefined\n}\n\nfunction getOriginalStackFrames({\n isServer,\n isEdgeServer,\n isAppDirectory,\n frames,\n clientStats,\n serverStats,\n edgeServerStats,\n rootDirectory,\n}: {\n isServer: boolean\n isEdgeServer: boolean\n isAppDirectory: boolean\n frames: StackFrame[]\n clientStats: () => webpack.Stats | null\n serverStats: () => webpack.Stats | null\n edgeServerStats: () => webpack.Stats | null\n rootDirectory: string\n}): Promise<OriginalStackFramesResponse> {\n return Promise.all(\n frames.map(\n (frame): Promise<OriginalStackFramesResponse[number]> =>\n getOriginalStackFrame({\n isServer,\n isEdgeServer,\n isAppDirectory,\n frame,\n clientStats,\n serverStats,\n edgeServerStats,\n rootDirectory,\n }).then(\n (value) => {\n return {\n status: 'fulfilled',\n value,\n }\n },\n (reason) => {\n return {\n status: 'rejected',\n reason: inspect(reason, { colors: false }),\n }\n }\n )\n )\n )\n}\n\nasync function getOriginalStackFrame({\n isServer,\n isEdgeServer,\n isAppDirectory,\n frame,\n clientStats,\n serverStats,\n edgeServerStats,\n rootDirectory,\n}: {\n isServer: boolean\n isEdgeServer: boolean\n isAppDirectory: boolean\n frame: StackFrame\n clientStats: () => webpack.Stats | null\n serverStats: () => webpack.Stats | null\n edgeServerStats: () => webpack.Stats | null\n rootDirectory: string\n}): Promise<OriginalStackFrameResponse> {\n const filename = frame.file ?? ''\n const source = await getSource(filename, {\n getCompilations: () => {\n const compilations: webpack.Compilation[] = []\n\n // Try Client Compilation first. In `pages` we leverage\n // `isClientError` to check. In `app` it depends on if it's a server\n // / client component and when the code throws. E.g. during HTML\n // rendering it's the server/edge compilation.\n if ((!isEdgeServer && !isServer) || isAppDirectory) {\n const compilation = clientStats()?.compilation\n\n if (compilation) {\n compilations.push(compilation)\n }\n }\n\n // Try Server Compilation. In `pages` this could be something\n // imported in getServerSideProps/getStaticProps as the code for\n // those is tree-shaken. In `app` this finds server components and\n // code that was imported from a server component. It also covers\n // when client component code throws during HTML rendering.\n if (isServer || isAppDirectory) {\n const compilation = serverStats()?.compilation\n\n if (compilation) {\n compilations.push(compilation)\n }\n }\n\n // Try Edge Server Compilation. Both cases are the same as Server\n // Compilation, main difference is that it covers `runtime: 'edge'`\n // pages/app routes.\n if (isEdgeServer || isAppDirectory) {\n const compilation = edgeServerStats()?.compilation\n\n if (compilation) {\n compilations.push(compilation)\n }\n }\n\n return compilations\n },\n })\n\n // This stack frame is used for the one that couldn't locate the source or source mapped frame\n const defaultStackFrame: IgnorableStackFrame = {\n file: frame.file,\n lineNumber: frame.lineNumber,\n column: frame.column ?? 1,\n methodName: frame.methodName,\n ignored: shouldIgnoreSource(filename),\n arguments: [],\n }\n if (!source) {\n // return original stack frame with no source map\n return {\n originalStackFrame: defaultStackFrame,\n originalCodeFrame: null,\n }\n }\n\n const originalStackFrameResponse = await createOriginalStackFrame({\n frame,\n source,\n rootDirectory,\n })\n\n if (!originalStackFrameResponse) {\n return {\n originalStackFrame: defaultStackFrame,\n originalCodeFrame: null,\n }\n }\n\n return originalStackFrameResponse\n}\n\nexport function getOverlayMiddleware(options: {\n rootDirectory: string\n clientStats: () => webpack.Stats | null\n serverStats: () => webpack.Stats | null\n edgeServerStats: () => webpack.Stats | null\n}) {\n const { rootDirectory, clientStats, serverStats, edgeServerStats } = options\n\n return async function (\n req: IncomingMessage,\n res: ServerResponse,\n next: () => void\n ): Promise<void> {\n const { pathname, searchParams } = new URL(`http://n${req.url}`)\n\n if (pathname === '/__nextjs_original-stack-frames') {\n if (req.method !== 'POST') {\n return middlewareResponse.badRequest(res)\n }\n\n const body = await new Promise<string>((resolve, reject) => {\n let data = ''\n req.on('data', (chunk) => {\n data += chunk\n })\n req.on('end', () => resolve(data))\n req.on('error', reject)\n })\n\n try {\n const { frames, isServer, isEdgeServer, isAppDirectory } = JSON.parse(\n body\n ) as OriginalStackFramesRequest\n\n return middlewareResponse.json(\n res,\n await getOriginalStackFrames({\n isServer,\n isEdgeServer,\n isAppDirectory,\n frames: frames.map((frame) => ({\n ...frame,\n lineNumber: frame.lineNumber ?? 0,\n column: frame.column ?? 0,\n })),\n clientStats,\n serverStats,\n edgeServerStats,\n rootDirectory,\n })\n )\n } catch (err) {\n return middlewareResponse.badRequest(res)\n }\n } else if (pathname === '/__nextjs_launch-editor') {\n const frame = {\n file: searchParams.get('file') as string,\n methodName: searchParams.get('methodName') as string,\n lineNumber: parseInt(searchParams.get('lineNumber') ?? '0', 10) || 0,\n column: parseInt(searchParams.get('column') ?? '0', 10) || 0,\n arguments: searchParams.getAll('arguments').filter(Boolean),\n } satisfies StackFrame\n\n if (!frame.file) return middlewareResponse.badRequest(res)\n\n // frame files may start with their webpack layer, like (middleware)/middleware.js\n const filePath = path.resolve(\n rootDirectory,\n frame.file.replace(/^\\([^)]+\\)\\//, '')\n )\n const fileExists = await fs.access(filePath, FS.F_OK).then(\n () => true,\n () => false\n )\n if (!fileExists) return middlewareResponse.notFound(res)\n\n try {\n launchEditor(filePath, frame.lineNumber, frame.column ?? 1)\n } catch (err) {\n console.log('Failed to launch editor:', err)\n return middlewareResponse.internalServerError(res)\n }\n\n return middlewareResponse.noContent(res)\n }\n\n return next()\n }\n}\n\nexport function getSourceMapMiddleware(options: {\n clientStats: () => webpack.Stats | null\n serverStats: () => webpack.Stats | null\n edgeServerStats: () => webpack.Stats | null\n}) {\n const { clientStats, serverStats, edgeServerStats } = options\n\n return async function (\n req: IncomingMessage,\n res: ServerResponse,\n next: () => void\n ): Promise<void> {\n const { pathname, searchParams } = new URL(`http://n${req.url}`)\n\n if (pathname !== '/__nextjs_source-map') {\n return next()\n }\n\n const filename = searchParams.get('filename')\n\n if (!filename) {\n return middlewareResponse.badRequest(res)\n }\n\n let source: Source | undefined\n\n try {\n source = await getSource(filename, {\n getCompilations: () => {\n const compilations: webpack.Compilation[] = []\n\n for (const stats of [\n clientStats(),\n serverStats(),\n edgeServerStats(),\n ]) {\n if (stats?.compilation) {\n compilations.push(stats.compilation)\n }\n }\n\n return compilations\n },\n })\n } catch (error) {\n return middlewareResponse.internalServerError(res, error)\n }\n\n if (!source) {\n return middlewareResponse.noContent(res)\n }\n\n return middlewareResponse.json(res, source.sourceMap)\n }\n}\n"],"names":["constants","FS","promises","fs","findSourceMap","path","fileURLToPath","pathToFileURL","SourceMapConsumer","getSourceMapFromFile","launchEditor","getOriginalCodeFrame","middlewareResponse","getServerError","parseStack","formatFrameSourceFile","inspect","shouldIgnoreSource","sourceURL","includes","startsWith","getModuleById","id","compilation","chunkGraph","modules","find","module","getModuleId","findModuleNotFoundFromError","errorMessage","match","getSourcePath","source","replace","findOriginalSourcePositionAndContent","sourceMap","position","consumer","cause","Error","file","sourcePosition","originalPositionFor","line","lineNumber","column","sourceContent","sourceContentFor","destroy","getIgnoredSources","ignoreList","Set","moduleFilenames","sources","index","length","webpackSourceURL","formattedFilePath","add","ignoredSources","map","url","ignored","has","indexOf","content","sourcesContent","isIgnoredSource","ignoredSource","findOriginalSourcePositionAndContentFromCompilation","moduleId","importedModule","buildInfo","importLocByPath","get","createOriginalStackFrame","rootDirectory","frame","moduleNotFound","result","type","undefined","moduleURL","sourcePath","filePath","resolve","resolvedFilePath","relative","traced","methodName","arguments","originalStackFrame","originalCodeFrame","getSourceMapFromCompilation","codeGenerationResult","codeGenerationResults","err","console","error","getSource","options","getCompilations","nativeSourceMap","sourceMapPayload","payload","isAbsolute","href","getOriginalStackFrames","isServer","isEdgeServer","isAppDirectory","frames","clientStats","serverStats","edgeServerStats","Promise","all","getOriginalStackFrame","then","value","status","reason","colors","filename","compilations","push","defaultStackFrame","originalStackFrameResponse","getOverlayMiddleware","req","res","next","pathname","searchParams","URL","method","badRequest","body","reject","data","on","chunk","JSON","parse","json","parseInt","getAll","filter","Boolean","fileExists","access","F_OK","notFound","log","internalServerError","noContent","getSourceMapMiddleware","stats"],"mappings":"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"}
1
+ {"version":3,"sources":["../../../../../src/client/components/react-dev-overlay/server/middleware-webpack.ts"],"sourcesContent":["import { constants as FS, promises as fs } from 'fs'\nimport { findSourceMap, type SourceMap } from 'module'\nimport path from 'path'\nimport { fileURLToPath, pathToFileURL } from 'url'\nimport {\n SourceMapConsumer,\n type BasicSourceMapConsumer,\n} from 'next/dist/compiled/source-map08'\nimport type { StackFrame } from 'next/dist/compiled/stacktrace-parser'\nimport { getSourceMapFromFile } from '../utils/get-source-map-from-file'\nimport { launchEditor } from '../utils/launch-editor'\nimport {\n getOriginalCodeFrame,\n type OriginalStackFrameResponse,\n type OriginalStackFramesRequest,\n type OriginalStackFramesResponse,\n} from './shared'\nimport { middlewareResponse } from './middleware-response'\nexport { getServerError } from '../utils/node-stack-frames'\nexport { parseStack } from '../utils/parse-stack'\nexport { getSourceMapFromFile }\n\nimport type { IncomingMessage, ServerResponse } from 'http'\nimport type webpack from 'webpack'\nimport type {\n NullableMappedPosition,\n RawSourceMap,\n} from 'next/dist/compiled/source-map08'\nimport { formatFrameSourceFile } from '../utils/webpack-module-path'\nimport type { MappedPosition } from 'source-map'\nimport { inspect } from 'util'\n\nfunction shouldIgnoreSource(sourceURL: string): boolean {\n return (\n sourceURL.includes('node_modules') ||\n // Only relevant for when Next.js is symlinked e.g. in the Next.js monorepo\n sourceURL.includes('next/dist') ||\n sourceURL.startsWith('node:')\n )\n}\n\ntype IgnoredSources = Array<{ url: string; ignored: boolean }>\n\nexport interface IgnorableStackFrame extends StackFrame {\n ignored: boolean\n}\n\ntype SourceAttributes = {\n sourcePosition: NullableMappedPosition\n sourceContent: string | null\n}\n\ntype Source =\n | {\n type: 'file'\n sourceMap: RawSourceMap\n ignoredSources: IgnoredSources\n moduleURL: string\n }\n | {\n type: 'bundle'\n sourceMap: RawSourceMap\n ignoredSources: IgnoredSources\n compilation: webpack.Compilation\n moduleId: string\n moduleURL: string\n }\n\nfunction getModuleById(\n id: string | undefined,\n compilation: webpack.Compilation\n) {\n const { chunkGraph, modules } = compilation\n\n return [...modules].find((module) => chunkGraph.getModuleId(module) === id)\n}\n\nfunction findModuleNotFoundFromError(errorMessage: string | undefined) {\n return errorMessage?.match(/'([^']+)' module/)?.[1]\n}\n\nfunction getSourcePath(source: string) {\n if (source.startsWith('file://')) {\n return fileURLToPath(source)\n }\n return source.replace(/^(webpack:\\/\\/\\/|webpack:\\/\\/|webpack:\\/\\/_N_E\\/)/, '')\n}\n\n/**\n * @returns 1-based lines and 0-based columns\n */\nasync function findOriginalSourcePositionAndContent(\n sourceMap: RawSourceMap,\n position: { lineNumber: number | null; column: number | null }\n): Promise<SourceAttributes | null> {\n let consumer: BasicSourceMapConsumer\n try {\n consumer = await new SourceMapConsumer(sourceMap)\n } catch (cause) {\n throw new Error(\n `${sourceMap.file}: Invalid source map. Only conformant source maps can be used to find the original code.`,\n { cause }\n )\n }\n\n try {\n const sourcePosition = consumer.originalPositionFor({\n line: position.lineNumber ?? 1,\n // 0-based columns out requires 0-based columns in.\n column: (position.column ?? 1) - 1,\n })\n\n if (!sourcePosition.source) {\n return null\n }\n\n const sourceContent: string | null =\n consumer.sourceContentFor(\n sourcePosition.source,\n /* returnNullOnMissing */ true\n ) ?? null\n\n return {\n sourcePosition,\n sourceContent,\n }\n } finally {\n consumer.destroy()\n }\n}\n\nexport function getIgnoredSources(\n sourceMap: RawSourceMap & { ignoreList?: number[] }\n): IgnoredSources {\n const ignoreList = new Set<number>(sourceMap.ignoreList ?? [])\n const moduleFilenames = sourceMap?.sources ?? []\n\n for (let index = 0; index < moduleFilenames.length; index++) {\n // bundlerFilePath case: webpack://./app/page.tsx\n const webpackSourceURL = moduleFilenames[index]\n // Format the path to the normal file path\n const formattedFilePath = formatFrameSourceFile(webpackSourceURL)\n if (shouldIgnoreSource(formattedFilePath)) {\n ignoreList.add(index)\n }\n }\n\n const ignoredSources = sourceMap.sources.map((source, index) => {\n return {\n url: source,\n ignored: ignoreList.has(sourceMap.sources.indexOf(source)),\n content: sourceMap.sourcesContent?.[index] ?? null,\n }\n })\n return ignoredSources\n}\n\nfunction isIgnoredSource(\n source: Source,\n sourcePosition: MappedPosition | NullableMappedPosition\n) {\n if (sourcePosition.source == null) {\n return true\n }\n for (const ignoredSource of source.ignoredSources) {\n if (ignoredSource.ignored && ignoredSource.url === sourcePosition.source) {\n return true\n }\n }\n\n return false\n}\n\nfunction findOriginalSourcePositionAndContentFromCompilation(\n moduleId: string | undefined,\n importedModule: string,\n compilation: webpack.Compilation\n): SourceAttributes | null {\n const module = getModuleById(moduleId, compilation)\n return module?.buildInfo?.importLocByPath?.get(importedModule) ?? null\n}\n\nexport async function createOriginalStackFrame({\n source,\n rootDirectory,\n frame,\n errorMessage,\n}: {\n source: Source\n rootDirectory: string\n frame: StackFrame\n errorMessage?: string\n}): Promise<OriginalStackFrameResponse | null> {\n const moduleNotFound = findModuleNotFoundFromError(errorMessage)\n const result = await (() => {\n if (moduleNotFound) {\n if (source.type === 'file') {\n return undefined\n }\n\n return findOriginalSourcePositionAndContentFromCompilation(\n source.moduleId,\n moduleNotFound,\n source.compilation\n )\n }\n return findOriginalSourcePositionAndContent(source.sourceMap, frame)\n })()\n\n if (!result) {\n return null\n }\n const { sourcePosition, sourceContent } = result\n\n if (!sourcePosition.source) {\n return null\n }\n\n const ignored =\n isIgnoredSource(source, sourcePosition) ||\n // If the source file is externals, should be excluded even it's not ignored source.\n // e.g. webpack://next/dist/.. needs to be ignored\n shouldIgnoreSource(source.moduleURL)\n\n const sourcePath = getSourcePath(\n // When sourcePosition.source is the loader path the modulePath is generally better.\n (sourcePosition.source!.includes('|')\n ? source.moduleURL\n : sourcePosition.source) || source.moduleURL\n )\n const filePath = path.resolve(rootDirectory, sourcePath)\n const resolvedFilePath = path.relative(rootDirectory, filePath)\n\n const traced: IgnorableStackFrame = {\n file: resolvedFilePath,\n lineNumber: sourcePosition.line,\n column: (sourcePosition.column ?? 0) + 1,\n methodName:\n // We ignore the sourcemapped name since it won't be the correct name.\n // The callsite will point to the column of the variable name instead of the\n // name of the enclosing function.\n // TODO(NDX-531): Spy on prepareStackTrace to get the enclosing line number for method name mapping.\n // default is not a valid identifier in JS so webpack uses a custom variable when it's an unnamed default export\n // Resolve it back to `default` for the method name if the source position didn't have the method.\n frame.methodName\n ?.replace('__WEBPACK_DEFAULT_EXPORT__', 'default')\n ?.replace('__webpack_exports__.', ''),\n arguments: [],\n ignored,\n }\n\n return {\n originalStackFrame: traced,\n originalCodeFrame: getOriginalCodeFrame(traced, sourceContent),\n }\n}\n\nasync function getSourceMapFromCompilation(\n id: string,\n compilation: webpack.Compilation\n): Promise<RawSourceMap | undefined> {\n try {\n const module = getModuleById(id, compilation)\n\n if (!module) {\n return undefined\n }\n\n // @ts-expect-error The types for `CodeGenerationResults.get` require a\n // runtime to be passed as second argument, but apparently it also works\n // without it.\n const codeGenerationResult = compilation.codeGenerationResults.get(module)\n const source = codeGenerationResult?.sources.get('javascript')\n\n return source?.map() ?? undefined\n } catch (err) {\n console.error(`Failed to lookup module by ID (\"${id}\"):`, err)\n return undefined\n }\n}\n\nasync function getSource(\n sourceURL: string,\n options: {\n getCompilations: () => webpack.Compilation[]\n }\n): Promise<Source | undefined> {\n const { getCompilations } = options\n\n // Rspack is now using file:// URLs for source maps. Remove the rsc prefix to produce the file:/// url.\n sourceURL = sourceURL.replace(/(.*)\\/(?=file:\\/\\/)/, '')\n\n let nativeSourceMap: SourceMap | undefined\n try {\n nativeSourceMap = findSourceMap(sourceURL)\n } catch (cause) {\n throw new Error(\n `${sourceURL}: Invalid source map. Only conformant source maps can be used to find the original code.`,\n { cause }\n )\n }\n\n if (nativeSourceMap !== undefined) {\n const sourceMapPayload = nativeSourceMap.payload\n return {\n type: 'file',\n sourceMap: sourceMapPayload,\n ignoredSources: getIgnoredSources(sourceMapPayload),\n moduleURL: sourceURL,\n }\n }\n\n if (path.isAbsolute(sourceURL)) {\n sourceURL = pathToFileURL(sourceURL).href\n }\n\n if (sourceURL.startsWith('file:')) {\n const sourceMap = await getSourceMapFromFile(sourceURL)\n return sourceMap\n ? {\n type: 'file',\n sourceMap,\n ignoredSources: getIgnoredSources(sourceMap),\n moduleURL: sourceURL,\n }\n : undefined\n }\n\n // webpack-internal:///./src/hello.tsx => ./src/hello.tsx\n // rsc://React/Server/webpack-internal:///(rsc)/./src/hello.tsx?42 => (rsc)/./src/hello.tsx\n // webpack://_N_E/./src/hello.tsx => ./src/hello.tsx\n const moduleId = sourceURL\n .replace(\n /^(rsc:\\/\\/React\\/[^/]+\\/)?(webpack-internal:\\/\\/\\/|webpack:\\/\\/(_N_E\\/)?)/,\n ''\n )\n .replace(/\\?\\d+$/, '')\n\n // (rsc)/./src/hello.tsx => ./src/hello.tsx\n const moduleURL = moduleId.replace(/^(\\(.*\\)\\/?)/, '')\n\n for (const compilation of getCompilations()) {\n const sourceMap = await getSourceMapFromCompilation(moduleId, compilation)\n\n if (sourceMap) {\n const ignoredSources = getIgnoredSources(sourceMap)\n return {\n type: 'bundle',\n sourceMap,\n compilation,\n moduleId,\n moduleURL,\n ignoredSources,\n }\n }\n }\n\n return undefined\n}\n\nfunction getOriginalStackFrames({\n isServer,\n isEdgeServer,\n isAppDirectory,\n frames,\n clientStats,\n serverStats,\n edgeServerStats,\n rootDirectory,\n}: {\n isServer: boolean\n isEdgeServer: boolean\n isAppDirectory: boolean\n frames: StackFrame[]\n clientStats: () => webpack.Stats | null\n serverStats: () => webpack.Stats | null\n edgeServerStats: () => webpack.Stats | null\n rootDirectory: string\n}): Promise<OriginalStackFramesResponse> {\n return Promise.all(\n frames.map(\n (frame): Promise<OriginalStackFramesResponse[number]> =>\n getOriginalStackFrame({\n isServer,\n isEdgeServer,\n isAppDirectory,\n frame,\n clientStats,\n serverStats,\n edgeServerStats,\n rootDirectory,\n }).then(\n (value) => {\n return {\n status: 'fulfilled',\n value,\n }\n },\n (reason) => {\n return {\n status: 'rejected',\n reason: inspect(reason, { colors: false }),\n }\n }\n )\n )\n )\n}\n\nasync function getOriginalStackFrame({\n isServer,\n isEdgeServer,\n isAppDirectory,\n frame,\n clientStats,\n serverStats,\n edgeServerStats,\n rootDirectory,\n}: {\n isServer: boolean\n isEdgeServer: boolean\n isAppDirectory: boolean\n frame: StackFrame\n clientStats: () => webpack.Stats | null\n serverStats: () => webpack.Stats | null\n edgeServerStats: () => webpack.Stats | null\n rootDirectory: string\n}): Promise<OriginalStackFrameResponse> {\n const filename = frame.file ?? ''\n const source = await getSource(filename, {\n getCompilations: () => {\n const compilations: webpack.Compilation[] = []\n\n // Try Client Compilation first. In `pages` we leverage\n // `isClientError` to check. In `app` it depends on if it's a server\n // / client component and when the code throws. E.g. during HTML\n // rendering it's the server/edge compilation.\n if ((!isEdgeServer && !isServer) || isAppDirectory) {\n const compilation = clientStats()?.compilation\n\n if (compilation) {\n compilations.push(compilation)\n }\n }\n\n // Try Server Compilation. In `pages` this could be something\n // imported in getServerSideProps/getStaticProps as the code for\n // those is tree-shaken. In `app` this finds server components and\n // code that was imported from a server component. It also covers\n // when client component code throws during HTML rendering.\n if (isServer || isAppDirectory) {\n const compilation = serverStats()?.compilation\n\n if (compilation) {\n compilations.push(compilation)\n }\n }\n\n // Try Edge Server Compilation. Both cases are the same as Server\n // Compilation, main difference is that it covers `runtime: 'edge'`\n // pages/app routes.\n if (isEdgeServer || isAppDirectory) {\n const compilation = edgeServerStats()?.compilation\n\n if (compilation) {\n compilations.push(compilation)\n }\n }\n\n return compilations\n },\n })\n\n let defaultNormalizedStackFrameLocation = frame.file\n if (\n defaultNormalizedStackFrameLocation !== null &&\n defaultNormalizedStackFrameLocation.startsWith('file://')\n ) {\n defaultNormalizedStackFrameLocation = path.relative(\n rootDirectory,\n fileURLToPath(defaultNormalizedStackFrameLocation)\n )\n }\n // This stack frame is used for the one that couldn't locate the source or source mapped frame\n const defaultStackFrame: IgnorableStackFrame = {\n file: defaultNormalizedStackFrameLocation,\n lineNumber: frame.lineNumber,\n column: frame.column ?? 1,\n methodName: frame.methodName,\n ignored: shouldIgnoreSource(filename),\n arguments: [],\n }\n if (!source) {\n // return original stack frame with no source map\n return {\n originalStackFrame: defaultStackFrame,\n originalCodeFrame: null,\n }\n }\n\n const originalStackFrameResponse = await createOriginalStackFrame({\n frame,\n source,\n rootDirectory,\n })\n\n if (!originalStackFrameResponse) {\n return {\n originalStackFrame: defaultStackFrame,\n originalCodeFrame: null,\n }\n }\n\n return originalStackFrameResponse\n}\n\nexport function getOverlayMiddleware(options: {\n rootDirectory: string\n clientStats: () => webpack.Stats | null\n serverStats: () => webpack.Stats | null\n edgeServerStats: () => webpack.Stats | null\n}) {\n const { rootDirectory, clientStats, serverStats, edgeServerStats } = options\n\n return async function (\n req: IncomingMessage,\n res: ServerResponse,\n next: () => void\n ): Promise<void> {\n const { pathname, searchParams } = new URL(`http://n${req.url}`)\n\n if (pathname === '/__nextjs_original-stack-frames') {\n if (req.method !== 'POST') {\n return middlewareResponse.badRequest(res)\n }\n\n const body = await new Promise<string>((resolve, reject) => {\n let data = ''\n req.on('data', (chunk) => {\n data += chunk\n })\n req.on('end', () => resolve(data))\n req.on('error', reject)\n })\n\n try {\n const { frames, isServer, isEdgeServer, isAppDirectory } = JSON.parse(\n body\n ) as OriginalStackFramesRequest\n\n return middlewareResponse.json(\n res,\n await getOriginalStackFrames({\n isServer,\n isEdgeServer,\n isAppDirectory,\n frames: frames.map((frame) => ({\n ...frame,\n lineNumber: frame.lineNumber ?? 0,\n column: frame.column ?? 0,\n })),\n clientStats,\n serverStats,\n edgeServerStats,\n rootDirectory,\n })\n )\n } catch (err) {\n return middlewareResponse.badRequest(res)\n }\n } else if (pathname === '/__nextjs_launch-editor') {\n const frame = {\n file: searchParams.get('file') as string,\n methodName: searchParams.get('methodName') as string,\n lineNumber: parseInt(searchParams.get('lineNumber') ?? '0', 10) || 0,\n column: parseInt(searchParams.get('column') ?? '0', 10) || 0,\n arguments: searchParams.getAll('arguments').filter(Boolean),\n } satisfies StackFrame\n\n if (!frame.file) return middlewareResponse.badRequest(res)\n\n // frame files may start with their webpack layer, like (middleware)/middleware.js\n const filePath = path.resolve(\n rootDirectory,\n frame.file.replace(/^\\([^)]+\\)\\//, '')\n )\n const fileExists = await fs.access(filePath, FS.F_OK).then(\n () => true,\n () => false\n )\n if (!fileExists) return middlewareResponse.notFound(res)\n\n try {\n launchEditor(filePath, frame.lineNumber, frame.column ?? 1)\n } catch (err) {\n console.log('Failed to launch editor:', err)\n return middlewareResponse.internalServerError(res)\n }\n\n return middlewareResponse.noContent(res)\n }\n\n return next()\n }\n}\n\nexport function getSourceMapMiddleware(options: {\n clientStats: () => webpack.Stats | null\n serverStats: () => webpack.Stats | null\n edgeServerStats: () => webpack.Stats | null\n}) {\n const { clientStats, serverStats, edgeServerStats } = options\n\n return async function (\n req: IncomingMessage,\n res: ServerResponse,\n next: () => void\n ): Promise<void> {\n const { pathname, searchParams } = new URL(`http://n${req.url}`)\n\n if (pathname !== '/__nextjs_source-map') {\n return next()\n }\n\n const filename = searchParams.get('filename')\n\n if (!filename) {\n return middlewareResponse.badRequest(res)\n }\n\n let source: Source | undefined\n\n try {\n source = await getSource(filename, {\n getCompilations: () => {\n const compilations: webpack.Compilation[] = []\n\n for (const stats of [\n clientStats(),\n serverStats(),\n edgeServerStats(),\n ]) {\n if (stats?.compilation) {\n compilations.push(stats.compilation)\n }\n }\n\n return compilations\n },\n })\n } catch (error) {\n return middlewareResponse.internalServerError(res, error)\n }\n\n if (!source) {\n return middlewareResponse.noContent(res)\n }\n\n return middlewareResponse.json(res, source.sourceMap)\n }\n}\n"],"names":["constants","FS","promises","fs","findSourceMap","path","fileURLToPath","pathToFileURL","SourceMapConsumer","getSourceMapFromFile","launchEditor","getOriginalCodeFrame","middlewareResponse","getServerError","parseStack","formatFrameSourceFile","inspect","shouldIgnoreSource","sourceURL","includes","startsWith","getModuleById","id","compilation","chunkGraph","modules","find","module","getModuleId","findModuleNotFoundFromError","errorMessage","match","getSourcePath","source","replace","findOriginalSourcePositionAndContent","sourceMap","position","consumer","cause","Error","file","sourcePosition","originalPositionFor","line","lineNumber","column","sourceContent","sourceContentFor","destroy","getIgnoredSources","ignoreList","Set","moduleFilenames","sources","index","length","webpackSourceURL","formattedFilePath","add","ignoredSources","map","url","ignored","has","indexOf","content","sourcesContent","isIgnoredSource","ignoredSource","findOriginalSourcePositionAndContentFromCompilation","moduleId","importedModule","buildInfo","importLocByPath","get","createOriginalStackFrame","rootDirectory","frame","moduleNotFound","result","type","undefined","moduleURL","sourcePath","filePath","resolve","resolvedFilePath","relative","traced","methodName","arguments","originalStackFrame","originalCodeFrame","getSourceMapFromCompilation","codeGenerationResult","codeGenerationResults","err","console","error","getSource","options","getCompilations","nativeSourceMap","sourceMapPayload","payload","isAbsolute","href","getOriginalStackFrames","isServer","isEdgeServer","isAppDirectory","frames","clientStats","serverStats","edgeServerStats","Promise","all","getOriginalStackFrame","then","value","status","reason","colors","filename","compilations","push","defaultNormalizedStackFrameLocation","defaultStackFrame","originalStackFrameResponse","getOverlayMiddleware","req","res","next","pathname","searchParams","URL","method","badRequest","body","reject","data","on","chunk","JSON","parse","json","parseInt","getAll","filter","Boolean","fileExists","access","F_OK","notFound","log","internalServerError","noContent","getSourceMapMiddleware","stats"],"mappings":"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"}
@@ -26,7 +26,7 @@ import { SearchParamsContext, PathParamsContext } from '../shared/lib/hooks-clie
26
26
  import { onRecoverableError } from './react-client-callbacks/on-recoverable-error';
27
27
  import tracer from './tracing/tracer';
28
28
  import { isNextRouterError } from './components/is-next-router-error';
29
- export const version = "15.2.2-canary.0";
29
+ export const version = "15.2.2-canary.1";
30
30
  export let router;
31
31
  export const emitter = mitt();
32
32
  const looseToArray = (input)=>[].slice.call(input);
@@ -70,20 +70,20 @@ export async function createHotReloaderTurbopack(opts, serverFields, distDir, re
70
70
  var _opts_nextConfig_experimental_turbo, _nextConfig_watchOptions, _opts_nextConfig_experimental_turbo1;
71
71
  const dev = true;
72
72
  const buildId = 'development';
73
- const { nextConfig, dir } = opts;
73
+ const { nextConfig, dir: projectPath } = opts;
74
74
  const { loadBindings } = require('../../build/swc');
75
75
  let bindings = await loadBindings();
76
76
  // For the debugging purpose, check if createNext or equivalent next instance setup in test cases
77
77
  // works correctly. Normally `run-test` hides output so only will be visible when `--debug` flag is used.
78
78
  if (process.env.TURBOPACK && isTestMode) {
79
79
  require('console').log('Creating turbopack project', {
80
- dir,
80
+ dir: projectPath,
81
81
  testMode: isTestMode
82
82
  });
83
83
  }
84
84
  const hasRewrites = opts.fsChecker.rewrites.afterFiles.length > 0 || opts.fsChecker.rewrites.beforeFiles.length > 0 || opts.fsChecker.rewrites.fallback.length > 0;
85
85
  const hotReloaderSpan = trace('hot-reloader', undefined, {
86
- version: "15.2.2-canary.0"
86
+ version: "15.2.2-canary.1"
87
87
  });
88
88
  // Ensure the hotReloaderSpan is flushed immediately as it's the parentSpan for all processing
89
89
  // of the current `next dev` invocation.
@@ -102,11 +102,11 @@ export async function createHotReloaderTurbopack(opts, serverFields, distDir, re
102
102
  'last 1 Chrome versions, last 1 Firefox versions, last 1 Safari versions, last 1 Edge versions'
103
103
  ];
104
104
  const project = await bindings.turbo.createProject({
105
- projectPath: dir,
106
- rootPath: ((_opts_nextConfig_experimental_turbo = opts.nextConfig.experimental.turbo) == null ? void 0 : _opts_nextConfig_experimental_turbo.root) || opts.nextConfig.outputFileTracingRoot || dir,
105
+ projectPath: projectPath,
106
+ rootPath: ((_opts_nextConfig_experimental_turbo = opts.nextConfig.experimental.turbo) == null ? void 0 : _opts_nextConfig_experimental_turbo.root) || opts.nextConfig.outputFileTracingRoot || projectPath,
107
107
  distDir,
108
108
  nextConfig: opts.nextConfig,
109
- jsConfig: await getTurbopackJsConfig(dir, nextConfig),
109
+ jsConfig: await getTurbopackJsConfig(projectPath, nextConfig),
110
110
  watch: {
111
111
  enable: dev,
112
112
  pollIntervalMs: (_nextConfig_watchOptions = nextConfig.watchOptions) == null ? void 0 : _nextConfig_watchOptions.pollIntervalMs
@@ -133,7 +133,7 @@ export async function createHotReloaderTurbopack(opts, serverFields, distDir, re
133
133
  persistentCaching: isPersistentCachingEnabled(opts.nextConfig),
134
134
  memoryLimit: (_opts_nextConfig_experimental_turbo1 = opts.nextConfig.experimental.turbo) == null ? void 0 : _opts_nextConfig_experimental_turbo1.memoryLimit
135
135
  });
136
- setBundlerFindSourceMapImplementation(getSourceMapFromTurbopack.bind(null, project, dir));
136
+ setBundlerFindSourceMapImplementation(getSourceMapFromTurbopack.bind(null, project, projectPath));
137
137
  opts.onDevServerCleanup == null ? void 0 : opts.onDevServerCleanup.call(opts, async ()=>{
138
138
  setBundlerFindSourceMapImplementation(()=>undefined);
139
139
  await project.onExit();
@@ -429,7 +429,7 @@ export async function createHotReloaderTurbopack(opts, serverFields, distDir, re
429
429
  type: 'commonjs'
430
430
  }, null, 2));
431
431
  const middlewares = [
432
- getOverlayMiddleware(project),
432
+ getOverlayMiddleware(project, projectPath),
433
433
  getSourceMapMiddleware(project),
434
434
  getNextErrorFeedbackMiddleware(opts.telemetry),
435
435
  getDevOverlayFontMiddleware(),
@@ -704,7 +704,7 @@ export async function createHotReloaderTurbopack(opts, serverFields, distDir, re
704
704
  }
705
705
  await currentEntriesHandling;
706
706
  // TODO We shouldn't look into the filesystem again. This should use the information from entrypoints
707
- let routeDef = definition ?? await findPagePathData(dir, inputPage, nextConfig.pageExtensions, opts.pagesDir, opts.appDir);
707
+ let routeDef = definition ?? await findPagePathData(projectPath, inputPage, nextConfig.pageExtensions, opts.pagesDir, opts.appDir);
708
708
  // If the route is actually an app page route, then we should have access
709
709
  // to the app route definition, and therefore, the appPaths from it.
710
710
  if (!appPaths && definition && isAppPageRouteDefinition(definition)) {