next 16.0.1 → 16.0.2-canary.0
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.
- package/dist/bin/next +1 -1
- package/dist/build/index.js +4 -3
- package/dist/build/index.js.map +1 -1
- package/dist/build/swc/index.js +1 -1
- package/dist/build/utils.d.ts +3 -1
- package/dist/build/utils.js +5 -4
- package/dist/build/utils.js.map +1 -1
- package/dist/build/webpack-config.js +5 -3
- package/dist/build/webpack-config.js.map +1 -1
- package/dist/client/app-bootstrap.js +1 -1
- package/dist/client/index.js +1 -1
- package/dist/compiled/next-server/pages-api.runtime.dev.js +1 -1
- package/dist/compiled/next-server/pages-api.runtime.dev.js.map +1 -1
- package/dist/compiled/next-server/pages.runtime.dev.js +1 -1
- package/dist/compiled/next-server/pages.runtime.dev.js.map +1 -1
- package/dist/esm/build/index.js +4 -3
- package/dist/esm/build/index.js.map +1 -1
- package/dist/esm/build/swc/index.js +1 -1
- package/dist/esm/build/utils.js +5 -4
- package/dist/esm/build/utils.js.map +1 -1
- package/dist/esm/build/webpack-config.js +5 -3
- package/dist/esm/build/webpack-config.js.map +1 -1
- package/dist/esm/client/app-bootstrap.js +1 -1
- package/dist/esm/client/index.js +1 -1
- package/dist/esm/server/dev/hot-reloader-turbopack.js +1 -1
- package/dist/esm/server/dev/hot-reloader-webpack.js +1 -1
- package/dist/esm/server/lib/app-info-log.js +1 -1
- package/dist/esm/server/lib/start-server.js +1 -1
- package/dist/esm/shared/lib/errors/canary-only-config-error.js +1 -1
- package/dist/server/dev/hot-reloader-turbopack.js +1 -1
- package/dist/server/dev/hot-reloader-webpack.js +1 -1
- package/dist/server/lib/app-info-log.js +1 -1
- package/dist/server/lib/start-server.js +1 -1
- package/dist/shared/lib/errors/canary-only-config-error.js +1 -1
- package/dist/telemetry/anonymous-meta.js +1 -1
- package/dist/telemetry/events/session-stopped.js +2 -2
- package/dist/telemetry/events/version.js +2 -2
- package/package.json +15 -15
package/dist/esm/build/index.js
CHANGED
|
@@ -307,7 +307,7 @@ export default async function build(dir, reactProductionProfiling = false, debug
|
|
|
307
307
|
try {
|
|
308
308
|
const nextBuildSpan = trace('next-build', undefined, {
|
|
309
309
|
buildMode: experimentalBuildMode,
|
|
310
|
-
version: "16.0.
|
|
310
|
+
version: "16.0.2-canary.0"
|
|
311
311
|
});
|
|
312
312
|
NextBuildContext.nextBuildSpan = nextBuildSpan;
|
|
313
313
|
NextBuildContext.dir = dir;
|
|
@@ -829,7 +829,7 @@ export default async function build(dir, reactProductionProfiling = false, debug
|
|
|
829
829
|
// Files outside of the distDir can be "type": "module"
|
|
830
830
|
await writeFileUtf8(path.join(distDir, 'package.json'), '{"type": "commonjs"}');
|
|
831
831
|
// These are written to distDir, so they need to come after creating and cleaning distDr.
|
|
832
|
-
await recordFrameworkVersion("16.0.
|
|
832
|
+
await recordFrameworkVersion("16.0.2-canary.0");
|
|
833
833
|
await updateBuildDiagnostics({
|
|
834
834
|
buildStage: 'start'
|
|
835
835
|
});
|
|
@@ -2506,7 +2506,7 @@ export default async function build(dir, reactProductionProfiling = false, debug
|
|
|
2506
2506
|
configOutDir: path.join(dir, configOutDir),
|
|
2507
2507
|
staticPages,
|
|
2508
2508
|
serverPropsPages,
|
|
2509
|
-
nextVersion: "16.0.
|
|
2509
|
+
nextVersion: "16.0.2-canary.0",
|
|
2510
2510
|
tracingRoot: outputFileTracingRoot,
|
|
2511
2511
|
hasNodeMiddleware,
|
|
2512
2512
|
hasInstrumentationHook,
|
|
@@ -2547,6 +2547,7 @@ export default async function build(dir, reactProductionProfiling = false, debug
|
|
|
2547
2547
|
pageExtensions: config.pageExtensions,
|
|
2548
2548
|
buildManifest,
|
|
2549
2549
|
middlewareManifest,
|
|
2550
|
+
functionsConfigManifest,
|
|
2550
2551
|
hasGSPAndRevalidateZero
|
|
2551
2552
|
}));
|
|
2552
2553
|
await nextBuildSpan.traceChild('telemetry-flush').traceAsyncFn(()=>telemetry.flush());
|