@vuetify/cli 0.0.10-beta.3 → 0.0.10-beta.4
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/index.mjs +3 -3
- package/package.json +2 -2
package/dist/index.mjs
CHANGED
|
@@ -52949,7 +52949,7 @@ import { createRouter, createWebHistory } from 'vue-router'
|
|
|
52949
52949
|
import Index from '@/pages/index.vue'
|
|
52950
52950
|
|
|
52951
52951
|
const router = createRouter({
|
|
52952
|
-
history: createWebHistory(
|
|
52952
|
+
history: createWebHistory(import.meta.env.BASE_URL),
|
|
52953
52953
|
routes: [
|
|
52954
52954
|
{
|
|
52955
52955
|
path: '/',
|
|
@@ -52972,7 +52972,7 @@ function getFileRouterContent(ts) {
|
|
|
52972
52972
|
import { createRouter, createWebHistory } from 'vue-router/auto'
|
|
52973
52973
|
|
|
52974
52974
|
const router = createRouter({
|
|
52975
|
-
history: createWebHistory(
|
|
52975
|
+
history: createWebHistory(import.meta.env.BASE_URL),
|
|
52976
52976
|
})
|
|
52977
52977
|
|
|
52978
52978
|
export default router
|
|
@@ -56032,7 +56032,7 @@ function commandUpgradeFabric(pkgName) {
|
|
|
56032
56032
|
|
|
56033
56033
|
//#endregion
|
|
56034
56034
|
//#region package.json
|
|
56035
|
-
var version = "0.0.10-beta.
|
|
56035
|
+
var version = "0.0.10-beta.4";
|
|
56036
56036
|
|
|
56037
56037
|
//#endregion
|
|
56038
56038
|
//#region src/commands/docs.ts
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vuetify/cli",
|
|
3
|
-
"version": "0.0.10-beta.
|
|
3
|
+
"version": "0.0.10-beta.4",
|
|
4
4
|
"description": "Vuetify CLI",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"open": "^11.0.0",
|
|
19
19
|
"pathe": "^2.0.3",
|
|
20
20
|
"tsdown": "^0.16.6",
|
|
21
|
-
"@vuetify/cli-shared": "0.0.10-beta.
|
|
21
|
+
"@vuetify/cli-shared": "0.0.10-beta.4"
|
|
22
22
|
},
|
|
23
23
|
"main": "./dist/index.mjs",
|
|
24
24
|
"module": "./dist/index.mjs",
|