@vixt/vue 0.8.1 → 0.10.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/client/entry.d.ts +2 -4
- package/dist/client/entry.js +1 -4
- package/dist/client/plugins/pinia.d.ts +2 -2
- package/dist/client/plugins/pinia.js +1 -3
- package/dist/client/plugins/router.d.ts +2 -2
- package/dist/client/plugins/router.js +1 -3
- package/dist/index.d.mts +3 -3
- package/dist/index.mjs +251 -213
- package/dist/types/node.d.ts +2 -2
- package/package.json +9 -10
package/dist/types/node.d.ts
CHANGED
|
@@ -4,15 +4,15 @@ import type { ExtractPluginOptions } from '@vixt/core'
|
|
|
4
4
|
import type UnoCSS from 'unocss/vite'
|
|
5
5
|
import type AutoImport from 'unplugin-auto-import/vite'
|
|
6
6
|
import type Components from 'unplugin-vue-components/vite'
|
|
7
|
-
import type VueRouter from 'unplugin-vue-router/vite'
|
|
8
7
|
import type VueDevTools from 'vite-plugin-vue-devtools'
|
|
9
8
|
import type Layouts from 'vite-plugin-vue-layouts'
|
|
9
|
+
import type VueRouter from 'vue-router/vite'
|
|
10
10
|
|
|
11
11
|
declare module '@vixt/core' {
|
|
12
12
|
interface VixtOptions {
|
|
13
13
|
vue?: ExtractPluginOptions<typeof Vue>
|
|
14
14
|
vueJsx?: ExtractPluginOptions<typeof VueJsx>
|
|
15
|
-
/** https://
|
|
15
|
+
/** https://router.vuejs.org/file-based-routing/ */
|
|
16
16
|
router?: ExtractPluginOptions<typeof VueRouter>
|
|
17
17
|
/** https://github.com/JohnCampionJr/vite-plugin-vue-layouts */
|
|
18
18
|
layouts?: ExtractPluginOptions<typeof Layouts>
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vixt/vue",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.10.1",
|
|
5
5
|
"author": "SoulLyoko<https://github.com/SoulLyoko>",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"homepage": "https://soullyoko.github.io/vixt/",
|
|
@@ -24,20 +24,19 @@
|
|
|
24
24
|
"dist"
|
|
25
25
|
],
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@vitejs/plugin-vue": "^6.0.
|
|
28
|
-
"@vitejs/plugin-vue-jsx": "^5.1.
|
|
27
|
+
"@vitejs/plugin-vue": "^6.0.5",
|
|
28
|
+
"@vitejs/plugin-vue-jsx": "^5.1.5",
|
|
29
29
|
"@vueuse/core": "^13.9.0",
|
|
30
30
|
"pinia": "^3.0.4",
|
|
31
31
|
"pinia-plugin-persistedstate": "^4.7.1",
|
|
32
|
-
"unocss": "^66.6.
|
|
32
|
+
"unocss": "^66.6.7",
|
|
33
33
|
"unplugin-auto-import": "^21.0.0",
|
|
34
34
|
"unplugin-vue-components": "28.0.0",
|
|
35
|
-
"
|
|
36
|
-
"vite-plugin-vue-devtools": "^8.0.5",
|
|
35
|
+
"vite-plugin-vue-devtools": "^8.1.1",
|
|
37
36
|
"vite-plugin-vue-layouts": "^0.11.0",
|
|
38
|
-
"vue": "^3.5.
|
|
39
|
-
"vue-router": "^
|
|
40
|
-
"vue-tsc": "^3.2.
|
|
41
|
-
"@vixt/core": "0.
|
|
37
|
+
"vue": "^3.5.32",
|
|
38
|
+
"vue-router": "^5.0.4",
|
|
39
|
+
"vue-tsc": "^3.2.6",
|
|
40
|
+
"@vixt/core": "0.10.1"
|
|
42
41
|
}
|
|
43
42
|
}
|