vite-plugin-pages2 0.32.7 → 0.33.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/README.md +3 -3
- package/dist/index.cjs +14 -14
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +0 -26
- package/dist/index.d.ts +0 -26
- package/dist/index.js +14 -14
- package/dist/index.js.map +1 -1
- package/package.json +27 -19
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vite-plugin-pages2",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.
|
|
5
|
-
"packageManager": "pnpm@10.
|
|
4
|
+
"version": "0.33.0",
|
|
5
|
+
"packageManager": "pnpm@10.7.0",
|
|
6
6
|
"description": "File system base vue-router plugin for Vite",
|
|
7
7
|
"author": "wuc656 <wuc656@gmail.com>, hannoeru <me@hanlee.co>",
|
|
8
8
|
"license": "MIT",
|
|
9
9
|
"homepage": "https://github.com/wuc656/vite-plugin-pages",
|
|
10
10
|
"repository": {
|
|
11
11
|
"type": "git",
|
|
12
|
-
"url": "https://github.com/wuc656/vite-plugin-pages"
|
|
12
|
+
"url": "git+https://github.com/wuc656/vite-plugin-pages.git"
|
|
13
13
|
},
|
|
14
14
|
"bugs": "https://github.com/wuc656/vite-plugin-pages/issues",
|
|
15
15
|
"keywords": [
|
|
@@ -86,31 +86,32 @@
|
|
|
86
86
|
"debug": "^4.4.0",
|
|
87
87
|
"dequal": "^2.0.3",
|
|
88
88
|
"extract-comments": "^1.1.0",
|
|
89
|
-
"fast-glob": "^3.3.3",
|
|
90
89
|
"json5": "^2.2.3",
|
|
91
|
-
"local-pkg": "^1.
|
|
90
|
+
"local-pkg": "^1.1.1",
|
|
91
|
+
"micromatch": "^4.0.8",
|
|
92
92
|
"picocolors": "^1.1.1",
|
|
93
|
+
"tinyglobby": "^0.2.12",
|
|
93
94
|
"yaml": "^2.7.0"
|
|
94
95
|
},
|
|
95
96
|
"devDependencies": {
|
|
96
|
-
"@antfu/eslint-config": "^4.
|
|
97
|
+
"@antfu/eslint-config": "^4.11.0",
|
|
97
98
|
"@antfu/utils": "^9.1.0",
|
|
98
99
|
"@solidjs/router": "^0.15.3",
|
|
99
|
-
"@types/
|
|
100
|
-
"@types/node": "^22.13.
|
|
101
|
-
"@vitest/ui": "^3.0.
|
|
100
|
+
"@types/micromatch": "^4.0.9",
|
|
101
|
+
"@types/node": "^22.13.14",
|
|
102
|
+
"@vitest/ui": "^3.0.9",
|
|
102
103
|
"@vue/compiler-sfc": "^3.5.13",
|
|
103
|
-
"bumpp": "^10.0
|
|
104
|
-
"eslint": "^9.
|
|
104
|
+
"bumpp": "^10.1.0",
|
|
105
|
+
"eslint": "^9.23.0",
|
|
105
106
|
"esno": "^4.8.0",
|
|
106
|
-
"playwright": "^1.
|
|
107
|
-
"react": "^19.
|
|
108
|
-
"react-router": "^7.
|
|
109
|
-
"solid-js": "^1.9.
|
|
110
|
-
"tsup": "^8.
|
|
111
|
-
"typescript": "^5.
|
|
112
|
-
"vite": "^6.
|
|
113
|
-
"vitest": "^3.0.
|
|
107
|
+
"playwright": "^1.51.1",
|
|
108
|
+
"react": "^19.1.0",
|
|
109
|
+
"react-router": "^7.4.1",
|
|
110
|
+
"solid-js": "^1.9.5",
|
|
111
|
+
"tsup": "^8.4.0",
|
|
112
|
+
"typescript": "^5.8.2",
|
|
113
|
+
"vite": "^6.2.3",
|
|
114
|
+
"vitest": "^3.0.9",
|
|
114
115
|
"vue": "^3.5.13",
|
|
115
116
|
"vue-router": "^4.5.0"
|
|
116
117
|
},
|
|
@@ -119,6 +120,13 @@
|
|
|
119
120
|
"allowedVersions": {
|
|
120
121
|
"eslint": "*"
|
|
121
122
|
}
|
|
123
|
+
},
|
|
124
|
+
"overrides": {
|
|
125
|
+
"array-flatten": "npm:@nolyfill/array-flatten@^1",
|
|
126
|
+
"is-core-module": "npm:@nolyfill/is-core-module@^1",
|
|
127
|
+
"safe-buffer": "npm:@nolyfill/safe-buffer@^1",
|
|
128
|
+
"safer-buffer": "npm:@nolyfill/safer-buffer@^1",
|
|
129
|
+
"side-channel": "npm:@nolyfill/side-channel@^1"
|
|
122
130
|
}
|
|
123
131
|
}
|
|
124
132
|
}
|