@vercel/next 10.0.0 → 11.0.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.
- package/dist/index.js +1 -1
- package/package.json +5 -4
package/dist/index.js
CHANGED
|
@@ -13946,7 +13946,7 @@ async function getServerlessPages(params) {
|
|
|
13946
13946
|
for (const [entry, normalizedEntry] of Object.entries(
|
|
13947
13947
|
params.appPathRoutesManifest
|
|
13948
13948
|
)) {
|
|
13949
|
-
const normalizedPath = `${import_path3.default.join(
|
|
13949
|
+
const normalizedPath = `${import_path3.default.posix.join(
|
|
13950
13950
|
".",
|
|
13951
13951
|
normalizedEntry === "/" ? "/index" : normalizedEntry
|
|
13952
13952
|
)}.js`;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vercel/next",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "11.0.1",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"main": "./dist/index",
|
|
6
6
|
"homepage": "https://vercel.com/docs/runtimes#official-runtimes/next-js",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"@vercel/nft": "1.10.0"
|
|
17
17
|
},
|
|
18
18
|
"peerDependencies": {
|
|
19
|
-
"@vercel/build-utils": "14.
|
|
19
|
+
"@vercel/build-utils": "14.9.0"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
22
|
"@next-community/adapter-vercel": "0.0.1-beta.29",
|
|
@@ -57,14 +57,15 @@
|
|
|
57
57
|
"vite": "6.4.3",
|
|
58
58
|
"vitest": "4.1.10",
|
|
59
59
|
"webpack-sources": "3.2.3",
|
|
60
|
-
"@vercel/
|
|
61
|
-
"@vercel/
|
|
60
|
+
"@vercel/routing-utils": "6.5.0",
|
|
61
|
+
"@vercel/build-utils": "14.9.0"
|
|
62
62
|
},
|
|
63
63
|
"scripts": {
|
|
64
64
|
"build": "node build.mjs",
|
|
65
65
|
"test": "vitest run --config ../../vitest.config.mts",
|
|
66
66
|
"test-unit": "vitest run --config ../../vitest.config.mts test/unit/",
|
|
67
67
|
"test-next-local": "vitest run --config ../../vitest.config.mts test/integration/*.test.js test/integration/*.test.ts",
|
|
68
|
+
"test-next-local-windows": "vitest run --config ../../vitest.config.mts test/integration/nested-static-app-router.test.js",
|
|
68
69
|
"test-next-local-legacy": "vitest run --config ../../vitest.config.mts test/integration/legacy/*.test.js",
|
|
69
70
|
"test-next-local:middleware": "vitest run --config ../../vitest.config.mts test/integration/middleware.test.ts",
|
|
70
71
|
"test-e2e": "rm -f test/builder-info.json; vitest run --config ../../vitest.config.mts test/fixtures/ --exclude test/fixtures/00-bun-runtime/index.test.ts",
|