@next/routing 16.3.0-canary.9 → 16.3.0-canary.90
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/README.md +0 -2
- package/package.json +9 -10
package/README.md
CHANGED
|
@@ -2,8 +2,6 @@
|
|
|
2
2
|
|
|
3
3
|
Shared route resolving package for Next.js.
|
|
4
4
|
|
|
5
|
-
**NOTE: This package is experimental and will become stable along with adapters API**
|
|
6
|
-
|
|
7
5
|
## Overview
|
|
8
6
|
|
|
9
7
|
This package provides a comprehensive route resolution system that handles rewrites, redirects, middleware invocation, and dynamic route matching with support for conditional routing based on headers, cookies, queries, and host.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@next/routing",
|
|
3
|
-
"version": "16.3.0-canary.
|
|
3
|
+
"version": "16.3.0-canary.90",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"react",
|
|
6
6
|
"next",
|
|
@@ -20,6 +20,12 @@
|
|
|
20
20
|
"files": [
|
|
21
21
|
"dist"
|
|
22
22
|
],
|
|
23
|
+
"devDependencies": {
|
|
24
|
+
"@types/jest": "^29.5.0",
|
|
25
|
+
"@vercel/ncc": "0.38.4",
|
|
26
|
+
"jest": "^29.5.0",
|
|
27
|
+
"ts-jest": "^29.1.0"
|
|
28
|
+
},
|
|
23
29
|
"scripts": {
|
|
24
30
|
"dev": "ncc build ./src/index.ts -w -o dist/",
|
|
25
31
|
"prerelease": "node ../../scripts/rm.mjs dist",
|
|
@@ -27,13 +33,6 @@
|
|
|
27
33
|
"release": "ncc build ./src/index.ts -o ./dist/ --minify --no-cache --no-source-map-register",
|
|
28
34
|
"build": "pnpm release && pnpm types",
|
|
29
35
|
"test": "jest",
|
|
30
|
-
"test:watch": "jest --watch"
|
|
31
|
-
"prepublishOnly": "cd ../../ && turbo run build"
|
|
32
|
-
},
|
|
33
|
-
"devDependencies": {
|
|
34
|
-
"@types/jest": "^29.5.0",
|
|
35
|
-
"@vercel/ncc": "0.34.0",
|
|
36
|
-
"jest": "^29.5.0",
|
|
37
|
-
"ts-jest": "^29.1.0"
|
|
36
|
+
"test:watch": "jest --watch"
|
|
38
37
|
}
|
|
39
|
-
}
|
|
38
|
+
}
|