vue-multi-router 0.1.0 → 0.1.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/README.md +199 -4
- package/dist/index.d.ts +128 -74
- package/dist/index.js +365 -213
- package/package.json +2 -2
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vue-multi-router",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.1",
|
|
5
5
|
"description": "Vue 3 multi router",
|
|
6
6
|
"author": "",
|
|
7
7
|
"license": "MIT",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"format:check": "prettier --check src/ playground/src",
|
|
36
36
|
"lint": "eslint . --fix",
|
|
37
37
|
"lint:check": "eslint .",
|
|
38
|
-
"dependency-cruiser:check": "depcruise --config .dependency-cruiser.cjs src playground",
|
|
38
|
+
"dependency-cruiser:check": "depcruise --config .dependency-cruiser.cjs src playground/src",
|
|
39
39
|
"play": "vite --port 5174",
|
|
40
40
|
"build:playground": "vite build",
|
|
41
41
|
"preview:playground": "vite preview --outDir playground/dist",
|