create-vuetify0 1.1.0 → 1.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/dist/index.mjs +8 -8
- package/package.json +2 -2
package/dist/index.mjs
CHANGED
|
@@ -10369,7 +10369,7 @@ function projectArgs(options) {
|
|
|
10369
10369
|
css: {
|
|
10370
10370
|
type: "string",
|
|
10371
10371
|
description: i18n$1.t("args.css.description"),
|
|
10372
|
-
valueHint: "unocss | tailwindcss | none"
|
|
10372
|
+
valueHint: "unocss | unocss-wind4 | unocss-vuetify | tailwindcss | none"
|
|
10373
10373
|
},
|
|
10374
10374
|
packageManager: {
|
|
10375
10375
|
type: "string",
|
|
@@ -27236,11 +27236,11 @@ async function prompt(args, cwd = process.cwd()) {
|
|
|
27236
27236
|
css: ({ results }) => {
|
|
27237
27237
|
const type = results.type || args.type;
|
|
27238
27238
|
const platform = results.platform || args.platform;
|
|
27239
|
-
if (args.css)
|
|
27240
|
-
css
|
|
27241
|
-
|
|
27242
|
-
|
|
27243
|
-
|
|
27239
|
+
if (args.css) {
|
|
27240
|
+
if (type === "vuetify" && args.css === "unocss") return Promise.resolve("unocss-vuetify");
|
|
27241
|
+
if (type === "vuetify0" && args.css.startsWith("unocss-")) R.warn("v0 supports only --css with \"unocss | tailwindcss | none\", fallback to \"unocss\"");
|
|
27242
|
+
return Promise.resolve(args.css);
|
|
27243
|
+
}
|
|
27244
27244
|
if (!args.interactive) return Promise.resolve("none");
|
|
27245
27245
|
if (type === "vuetify" && platform === "nuxt") return qt({
|
|
27246
27246
|
message: i18n$1.t("prompts.css_framework.select"),
|
|
@@ -28049,7 +28049,7 @@ export const useAppStore = defineStore('app', {
|
|
|
28049
28049
|
|
|
28050
28050
|
//#endregion
|
|
28051
28051
|
//#region ../shared/package.json
|
|
28052
|
-
var version$1 = "1.1.
|
|
28052
|
+
var version$1 = "1.1.1";
|
|
28053
28053
|
|
|
28054
28054
|
//#endregion
|
|
28055
28055
|
//#region ../shared/src/utils/getTemplateSource.ts
|
|
@@ -30985,7 +30985,7 @@ const blue = ansi256(33);
|
|
|
30985
30985
|
|
|
30986
30986
|
//#endregion
|
|
30987
30987
|
//#region package.json
|
|
30988
|
-
var version = "1.1.
|
|
30988
|
+
var version = "1.1.1";
|
|
30989
30989
|
|
|
30990
30990
|
//#endregion
|
|
30991
30991
|
//#region src/commands/upgrade.ts
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-vuetify0",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "Create a new Vuetify project",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"nypm": "^0.6.5",
|
|
37
37
|
"pathe": "^2.0.3",
|
|
38
38
|
"tsdown": "^0.20.3",
|
|
39
|
-
"@vuetify/cli-shared": "1.1.
|
|
39
|
+
"@vuetify/cli-shared": "1.1.1"
|
|
40
40
|
},
|
|
41
41
|
"exports": {
|
|
42
42
|
".": "./dist/index.mjs",
|