create-vuetify0 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
|
@@ -52948,7 +52948,7 @@ import { createRouter, createWebHistory } from 'vue-router'
|
|
|
52948
52948
|
import Index from '@/pages/index.vue'
|
|
52949
52949
|
|
|
52950
52950
|
const router = createRouter({
|
|
52951
|
-
history: createWebHistory(
|
|
52951
|
+
history: createWebHistory(import.meta.env.BASE_URL),
|
|
52952
52952
|
routes: [
|
|
52953
52953
|
{
|
|
52954
52954
|
path: '/',
|
|
@@ -52971,7 +52971,7 @@ function getFileRouterContent(ts) {
|
|
|
52971
52971
|
import { createRouter, createWebHistory } from 'vue-router/auto'
|
|
52972
52972
|
|
|
52973
52973
|
const router = createRouter({
|
|
52974
|
-
history: createWebHistory(
|
|
52974
|
+
history: createWebHistory(import.meta.env.BASE_URL),
|
|
52975
52975
|
})
|
|
52976
52976
|
|
|
52977
52977
|
export default router
|
|
@@ -55452,7 +55452,7 @@ function commandUpgradeFabric(pkgName) {
|
|
|
55452
55452
|
|
|
55453
55453
|
//#endregion
|
|
55454
55454
|
//#region package.json
|
|
55455
|
-
var version = "0.0.10-beta.
|
|
55455
|
+
var version = "0.0.10-beta.4";
|
|
55456
55456
|
|
|
55457
55457
|
//#endregion
|
|
55458
55458
|
//#region src/commands/upgrade.ts
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-vuetify0",
|
|
3
|
-
"version": "0.0.10-beta.
|
|
3
|
+
"version": "0.0.10-beta.4",
|
|
4
4
|
"description": "Create a new Vuetify project",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"nypm": "^0.6.2",
|
|
24
24
|
"pathe": "^2.0.3",
|
|
25
25
|
"tsdown": "^0.16.6",
|
|
26
|
-
"@vuetify/cli-shared": "0.0.10-beta.
|
|
26
|
+
"@vuetify/cli-shared": "0.0.10-beta.4"
|
|
27
27
|
},
|
|
28
28
|
"main": "./dist/index.mjs",
|
|
29
29
|
"module": "./dist/index.mjs",
|