@vuetify/cli 0.0.14-beta.2 → 0.0.14

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.
Files changed (2) hide show
  1. package/dist/index.mjs +29 -7
  2. package/package.json +2 -2
package/dist/index.mjs CHANGED
@@ -10718,6 +10718,17 @@ var en_default = {
10718
10718
  "vuetify0": "Vuetify0 (alpha)",
10719
10719
  "nuxt": "Nuxt"
10720
10720
  },
10721
+ "type": {
10722
+ "select": "Which version of Vuetify?",
10723
+ "vuetify": {
10724
+ "label": "Vuetify",
10725
+ "hint": "Standard Material Design Component Framework"
10726
+ },
10727
+ "vuetify0": {
10728
+ "label": "Vuetify 0 (alpha)",
10729
+ "hint": "Headless Component Library"
10730
+ }
10731
+ },
10721
10732
  "css_framework": {
10722
10733
  "select": "Which CSS framework?",
10723
10734
  "unocss": { "hint": "Instant on-demand atomic CSS engine" },
@@ -10928,6 +10939,17 @@ var ru_default = {
10928
10939
  "vuetify0": "Vuetify0 (alpha)",
10929
10940
  "nuxt": "Nuxt"
10930
10941
  },
10942
+ "type": {
10943
+ "select": "Какую версию Vuetify использовать?",
10944
+ "vuetify": {
10945
+ "label": "Vuetify",
10946
+ "hint": "Стандартная библиотека компонентов Material Design"
10947
+ },
10948
+ "vuetify0": {
10949
+ "label": "Vuetify 0 (альфа)",
10950
+ "hint": "Библиотека headless компонентов"
10951
+ }
10952
+ },
10931
10953
  "css_framework": {
10932
10954
  "select": "Какой фреймворк CSS вы хотите использовать?",
10933
10955
  "none": "Никакой",
@@ -124865,16 +124887,16 @@ async function prompt(args$2, cwd$2 = process.cwd()) {
124865
124887
  if (args$2.type) return Promise.resolve(args$2.type);
124866
124888
  if (!args$2.interactive) return Promise.resolve("vuetify");
124867
124889
  return qt({
124868
- message: "Which version of Vuetify?",
124890
+ message: i18n.t("prompts.type.select"),
124869
124891
  initialValue: "vuetify",
124870
124892
  options: [{
124871
- label: "Vuetify",
124893
+ label: i18n.t("prompts.type.vuetify.label"),
124872
124894
  value: "vuetify",
124873
- hint: "Standard Material Design Component Framework"
124895
+ hint: i18n.t("prompts.type.vuetify.hint")
124874
124896
  }, {
124875
- label: "Vuetify 0 (alpha)",
124897
+ label: i18n.t("prompts.type.vuetify0.label"),
124876
124898
  value: "vuetify0",
124877
- hint: "Headless Component Library"
124899
+ hint: i18n.t("prompts.type.vuetify0.hint")
124878
124900
  }]
124879
124901
  });
124880
124902
  },
@@ -161720,7 +161742,7 @@ export const useAppStore = defineStore('app', {
161720
161742
 
161721
161743
  //#endregion
161722
161744
  //#region ../shared/package.json
161723
- var version$1 = "0.0.14-beta.2";
161745
+ var version$1 = "0.0.14";
161724
161746
 
161725
161747
  //#endregion
161726
161748
  //#region ../shared/src/utils/getTemplateSource.ts
@@ -163692,7 +163714,7 @@ const JsonReporter = { report: async (data, options$1) => {
163692
163714
 
163693
163715
  //#endregion
163694
163716
  //#region package.json
163695
- var version = "0.0.14-beta.2";
163717
+ var version = "0.0.14";
163696
163718
 
163697
163719
  //#endregion
163698
163720
  //#region src/commands/analyze.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vuetify/cli",
3
- "version": "0.0.14-beta.2",
3
+ "version": "0.0.14",
4
4
  "description": "Vuetify CLI",
5
5
  "type": "module",
6
6
  "files": [
@@ -35,7 +35,7 @@
35
35
  "open": "^11.0.0",
36
36
  "pathe": "^2.0.3",
37
37
  "tsdown": "^0.16.8",
38
- "@vuetify/cli-shared": "0.0.14-beta.2"
38
+ "@vuetify/cli-shared": "0.0.14"
39
39
  },
40
40
  "dependencies": {
41
41
  "@typescript-eslint/parser": "^8.53.0"