@vixt/vue 0.12.1 → 0.13.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/dist/client/client.d.ts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { App } from "vue";
|
|
2
|
-
import {
|
|
3
|
-
|
|
2
|
+
import { RouteRecordRaw, Router, RouterOptions } from "vue-router";
|
|
4
3
|
//#region src/client/client.d.ts
|
|
5
4
|
interface VueVixtAppConfig {
|
|
6
5
|
/** https://router.vuejs.org/api/interfaces/RouterOptions.html */
|
|
@@ -12,7 +11,7 @@ interface VueVixtApp {
|
|
|
12
11
|
/** Router instance */
|
|
13
12
|
router: Router;
|
|
14
13
|
/** Router routes */
|
|
15
|
-
routes:
|
|
14
|
+
routes: RouteRecordRaw[];
|
|
16
15
|
}
|
|
17
16
|
declare module '@vixt/core/client' {
|
|
18
17
|
interface VixtAppConfig extends VueVixtAppConfig {}
|
package/dist/client/entry.d.ts
CHANGED
package/dist/node/index.d.mts
CHANGED
package/dist/node/node.d.mts
CHANGED
|
@@ -5,7 +5,6 @@ import Components from "unplugin-vue-components/vite";
|
|
|
5
5
|
import VueDevTools from "vite-plugin-vue-devtools";
|
|
6
6
|
import Layouts from "vite-plugin-vue-layouts";
|
|
7
7
|
import VueRouter from "vue-router/vite";
|
|
8
|
-
|
|
9
8
|
//#region src/node/node.d.ts
|
|
10
9
|
interface VueVixtOptions {
|
|
11
10
|
/** https://github.com/vitejs/vite-plugin-vue/tree/main/packages/plugin-vue */
|
package/package.json
CHANGED
|
@@ -1,19 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vixt/vue",
|
|
3
|
-
"
|
|
4
|
-
"
|
|
5
|
-
|
|
6
|
-
|
|
3
|
+
"version": "0.13.0",
|
|
4
|
+
"keywords": [
|
|
5
|
+
"vite",
|
|
6
|
+
"vixt",
|
|
7
|
+
"vue"
|
|
8
|
+
],
|
|
7
9
|
"homepage": "https://soullyoko.github.io/vixt/",
|
|
10
|
+
"license": "MIT",
|
|
11
|
+
"author": "SoulLyoko<https://github.com/SoulLyoko>",
|
|
8
12
|
"repository": {
|
|
9
13
|
"type": "git",
|
|
10
14
|
"url": "https://github.com/SoulLyoko/vixt.git"
|
|
11
15
|
},
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
"vite",
|
|
15
|
-
"vue"
|
|
16
|
+
"files": [
|
|
17
|
+
"dist"
|
|
16
18
|
],
|
|
19
|
+
"type": "module",
|
|
20
|
+
"main": "./dist/node/index.mjs",
|
|
21
|
+
"types": "./dist/types/index.d.ts",
|
|
17
22
|
"exports": {
|
|
18
23
|
".": "./dist/node/index.mjs",
|
|
19
24
|
"./client/App": "./dist/client/App.vue",
|
|
@@ -21,26 +26,21 @@
|
|
|
21
26
|
"./types": "./dist/types/index.d.ts",
|
|
22
27
|
"./package.json": "./package.json"
|
|
23
28
|
},
|
|
24
|
-
"main": "./dist/node/index.mjs",
|
|
25
|
-
"types": "./dist/types/index.d.ts",
|
|
26
|
-
"files": [
|
|
27
|
-
"dist"
|
|
28
|
-
],
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@vitejs/plugin-vue": "^6.0.
|
|
30
|
+
"@vitejs/plugin-vue": "^6.0.8",
|
|
31
31
|
"@vitejs/plugin-vue-jsx": "^5.1.6",
|
|
32
|
-
"@
|
|
32
|
+
"@vixt/core": "0.13.0",
|
|
33
|
+
"@vue/compiler-sfc": "^3.5.41",
|
|
33
34
|
"defu": "^6.1.7",
|
|
34
|
-
"fs-extra": "^11.
|
|
35
|
+
"fs-extra": "^11.4.0",
|
|
35
36
|
"mlly": "^1.8.2",
|
|
36
37
|
"pathe": "^2.0.3",
|
|
37
38
|
"unplugin-vue-components": "28.0.0",
|
|
38
|
-
"vite": "^8.
|
|
39
|
-
"vite-plugin-vue-devtools": "^8.1
|
|
39
|
+
"vite": "^8.2.2",
|
|
40
|
+
"vite-plugin-vue-devtools": "^8.2.1",
|
|
40
41
|
"vite-plugin-vue-layouts": "^0.11.0",
|
|
41
|
-
"vue": "^3.5.
|
|
42
|
-
"vue-router": "^5.
|
|
43
|
-
"vue-tsc": "^3.3.
|
|
44
|
-
"@vixt/core": "0.12.1"
|
|
42
|
+
"vue": "^3.5.41",
|
|
43
|
+
"vue-router": "^5.2.0",
|
|
44
|
+
"vue-tsc": "^3.3.11"
|
|
45
45
|
}
|
|
46
46
|
}
|