You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ignore-list published sources if they have have a sourcemap
This shouldn't affect most users since in those case
these files would be inside node_modules/ and therefore
ignore-listed by default.
The only exception I can think of is setups where
modules are not inside node_modules/ but inside
another folder (Yarn Berry has such on option).
It's mostly targetted at our own testing where the
Next.js installation may be symlinked and therefore
not point into node_modules.
Webpack-bundled code may not be affected due to
https://linear.app/vercel/issue/NDX-464.
: '\n at usingWebAssemblyCompile (../../test/integration/edge-runtime-dynamic-code/lib/wasm.js:22:23)'+
182
183
'\n at middleware (../../test/integration/edge-runtime-dynamic-code/middleware.js:24:68)'+
183
184
// Next.js internal frame. Feel free to adjust.
@@ -188,6 +189,7 @@ describe.each([
188
189
expect(output).toContain(
189
190
isTurbopack
190
191
? ''+
192
+
// TODO(veil): Turbopack duplicates project path
191
193
'\n at usingWebAssemblyCompile (../../test/integration/edge-runtime-dynamic-code/test/integration/edge-runtime-dynamic-code/lib/wasm.js:22:17)'+
192
194
'\n at handler (../../test/integration/edge-runtime-dynamic-code/test/integration/edge-runtime-dynamic-code/pages/api/route.js:17:42)'+
193
195
// Next.js internal frame. Feel free to adjust.
@@ -232,14 +234,12 @@ describe.each([
232
234
? ''+
233
235
'\n at async usingWebAssemblyInstantiateWithBuffer (../../test/integration/edge-runtime-dynamic-code/test/integration/edge-runtime-dynamic-code/lib/wasm.js:28:23)'+
234
236
'\n at async middleware (../../test/integration/edge-runtime-dynamic-code/test/integration/edge-runtime-dynamic-code/middleware.js:37:29)'+
235
-
// Next.js internal frame. Feel free to adjust.
236
-
// Not ignore-listed because we're not in an isolated app and Next.js is symlinked so it's not in node_modules
237
-
'\n at'
237
+
'\n 26 |\n'
238
238
: ''+
239
239
'\n at async usingWebAssemblyInstantiateWithBuffer (../../test/integration/edge-runtime-dynamic-code/lib/wasm.js:28:23)'+
240
240
'\n at async middleware (../../test/integration/edge-runtime-dynamic-code/middleware.js:37:29)'+
241
241
// Next.js internal frame. Feel free to adjust.
242
-
// Not ignore-listed because we're not in an isolated app and Next.js is symlinked so it's not in node_modules
'\n at async usingWebAssemblyInstantiateWithBuffer (../../test/integration/edge-runtime-dynamic-code/test/integration/edge-runtime-dynamic-code/lib/wasm.js:28:23)'+
256
256
'\n at async handler (../../test/integration/edge-runtime-dynamic-code/test/integration/edge-runtime-dynamic-code/pages/api/route.js:21:16)'+
257
-
// Next.js internal frame. Feel free to adjust.
258
-
// Not ignore-listed because we're not in an isolated app and Next.js is symlinked so it's not in node_modules
259
-
'\n at'
257
+
'\n 26 |'
260
258
: ''+
261
259
'\n at async usingWebAssemblyInstantiateWithBuffer (../../test/integration/edge-runtime-dynamic-code/lib/wasm.js:28:23)'+
262
260
'\n at async handler (../../test/integration/edge-runtime-dynamic-code/pages/api/route.js:21:16)'+
0 commit comments