@qwik.dev/router 2.0.0-beta.6 → 2.0.0-beta.8
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/lib/index.d.ts +161 -48
- package/lib/index.qwik.cjs +80 -15
- package/lib/index.qwik.mjs +81 -16
- package/lib/middleware/azure-swa/index.mjs +4 -3
- package/lib/middleware/request-handler/index.d.ts +38 -43
- package/lib/vite/index.cjs +558 -311
- package/lib/vite/index.mjs +558 -311
- package/package.json +15 -17
package/package.json
CHANGED
|
@@ -1,28 +1,28 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qwik.dev/router",
|
|
3
3
|
"description": "The router for Qwik.",
|
|
4
|
-
"version": "2.0.0-beta.
|
|
4
|
+
"version": "2.0.0-beta.8",
|
|
5
5
|
"bugs": "https://github.com/QwikDev/qwik/issues",
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@mdx-js/mdx": "^3",
|
|
8
|
-
"@types/mdx": "^2",
|
|
7
|
+
"@mdx-js/mdx": "^3.1.0",
|
|
8
|
+
"@types/mdx": "^2.0.13",
|
|
9
9
|
"source-map": "^0.7.4",
|
|
10
|
-
"svgo": "^3.3",
|
|
10
|
+
"svgo": "^3.3.2",
|
|
11
11
|
"undici": "*",
|
|
12
12
|
"valibot": ">=0.36.0 <2",
|
|
13
|
-
"vfile": "6.0.
|
|
13
|
+
"vfile": "6.0.3",
|
|
14
14
|
"vite-imagetools": "^7.1.0",
|
|
15
|
-
"zod": "3.
|
|
15
|
+
"zod": "3.25.48"
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@azure/functions": "3.5.1",
|
|
19
|
-
"@microsoft/api-extractor": "7.52.
|
|
20
|
-
"@netlify/edge-functions": "2.
|
|
19
|
+
"@microsoft/api-extractor": "7.52.10",
|
|
20
|
+
"@netlify/edge-functions": "2.17.0",
|
|
21
21
|
"@types/mdast": "4.0.4",
|
|
22
|
-
"@types/node": "24.
|
|
22
|
+
"@types/node": "24.2.1",
|
|
23
23
|
"@types/refractor": "3.4.1",
|
|
24
24
|
"@types/set-cookie-parser": "2.4.10",
|
|
25
|
-
"estree-util-value-to-estree": "3.
|
|
25
|
+
"estree-util-value-to-estree": "3.4.0",
|
|
26
26
|
"github-slugger": "2.0.0",
|
|
27
27
|
"hast-util-heading-rank": "2.1.1",
|
|
28
28
|
"hast-util-to-string": "2.0.0",
|
|
@@ -32,15 +32,16 @@
|
|
|
32
32
|
"refractor": "4.8.1",
|
|
33
33
|
"rehype-autolink-headings": "7.1.0",
|
|
34
34
|
"remark-frontmatter": "5.0.0",
|
|
35
|
-
"remark-gfm": "4.0.
|
|
36
|
-
"set-cookie-parser": "2.
|
|
35
|
+
"remark-gfm": "4.0.1",
|
|
36
|
+
"set-cookie-parser": "2.7.1",
|
|
37
37
|
"tsm": "2.3.0",
|
|
38
38
|
"typescript": "5.8.3",
|
|
39
39
|
"unified": "11.0.5",
|
|
40
40
|
"unist-util-visit": "5.0.0",
|
|
41
41
|
"uvu": "0.5.6",
|
|
42
|
-
"
|
|
43
|
-
"
|
|
42
|
+
"vite": "7.1.0",
|
|
43
|
+
"yaml": "2.6.1",
|
|
44
|
+
"@qwik.dev/core": "2.0.0-beta.8"
|
|
44
45
|
},
|
|
45
46
|
"engines": {
|
|
46
47
|
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
@@ -185,9 +186,6 @@
|
|
|
185
186
|
"homepage": "https://qwik.dev/",
|
|
186
187
|
"license": "MIT",
|
|
187
188
|
"main": "./lib/index.qwik.mjs",
|
|
188
|
-
"peerDependencies": {
|
|
189
|
-
"vite": ">=5 <8"
|
|
190
|
-
},
|
|
191
189
|
"publishConfig": {
|
|
192
190
|
"access": "public"
|
|
193
191
|
},
|