create-vuetify 0.0.6-beta.3 → 0.0.6-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 CHANGED
@@ -28403,7 +28403,7 @@ const banner = createBanner();
28403
28403
 
28404
28404
  //#endregion
28405
28405
  //#region package.json
28406
- var version = "0.0.6-beta.3";
28406
+ var version = "0.0.6-beta.4";
28407
28407
 
28408
28408
  //#endregion
28409
28409
  //#region src/commands/upgrade.ts
@@ -28901,15 +28901,23 @@ async function prompt(args$2, cwd$1 = process.cwd()) {
28901
28901
  if (args$2.features) return Promise.resolve(args$2.features.filter((f$6) => f$6 !== "router" && f$6 !== "file-router"));
28902
28902
  return (results.type || args$2.type) === "vue" ? Lt({
28903
28903
  message: i18n.t("prompts.features.select", { hint: dim("↑/↓ to navigate, space to select, a to toggle all, enter to confirm") }),
28904
- options: [{
28905
- label: i18n.t("prompts.features.pinia.label"),
28906
- value: "pinia",
28907
- hint: i18n.t("prompts.features.pinia.hint")
28908
- }, {
28909
- label: i18n.t("prompts.features.eslint.label"),
28910
- value: "eslint",
28911
- hint: i18n.t("prompts.features.eslint.hint")
28912
- }],
28904
+ options: [
28905
+ {
28906
+ label: i18n.t("prompts.features.pinia.label"),
28907
+ value: "pinia",
28908
+ hint: i18n.t("prompts.features.pinia.hint")
28909
+ },
28910
+ {
28911
+ label: i18n.t("prompts.features.eslint.label"),
28912
+ value: "eslint",
28913
+ hint: i18n.t("prompts.features.eslint.hint")
28914
+ },
28915
+ {
28916
+ label: i18n.t("prompts.features.i18n.label"),
28917
+ value: "i18n",
28918
+ hint: i18n.t("prompts.features.i18n.hint")
28919
+ }
28920
+ ],
28913
28921
  initialValues: ["eslint"],
28914
28922
  required: false
28915
28923
  }) : Lt({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-vuetify",
3
- "version": "0.0.6-beta.3",
3
+ "version": "0.0.6-beta.4",
4
4
  "description": "Create a new Vuetify project",
5
5
  "type": "module",
6
6
  "bin": {
@@ -19,7 +19,7 @@
19
19
  "pathe": "^2.0.3",
20
20
  "tsdown": "^0.16.6",
21
21
  "vitest": "^4.0.16",
22
- "@vuetify/cli-shared": "0.0.6-beta.3"
22
+ "@vuetify/cli-shared": "0.0.6-beta.4"
23
23
  },
24
24
  "main": "./dist/index.mjs",
25
25
  "module": "./dist/index.mjs",
package/src/prompts.ts CHANGED
@@ -118,6 +118,7 @@ export async function prompt (args: Partial<ProjectOptions>, cwd = process.cwd()
118
118
  options: [
119
119
  { label: i18n.t('prompts.features.pinia.label'), value: 'pinia', hint: i18n.t('prompts.features.pinia.hint') },
120
120
  { label: i18n.t('prompts.features.eslint.label'), value: 'eslint', hint: i18n.t('prompts.features.eslint.hint') },
121
+ { label: i18n.t('prompts.features.i18n.label'), value: 'i18n', hint: i18n.t('prompts.features.i18n.hint') },
121
122
  ],
122
123
  initialValues: ['eslint'],
123
124
  required: false,