@vuetify/cli 0.0.13-beta.8 → 0.0.14-beta.2

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 +152 -134
  2. package/package.json +7 -2
package/dist/index.mjs CHANGED
@@ -2244,8 +2244,8 @@ async function renderUsage(cmd, parent) {
2244
2244
  usageLine.push(commandNames.join("|"));
2245
2245
  }
2246
2246
  const usageLines = [];
2247
- const version$6 = cmdMeta.version || parentMeta.version;
2248
- usageLines.push(colors.gray(`${cmdMeta.description} (${commandName + (version$6 ? ` v${version$6}` : "")})`), "");
2247
+ const version$7 = cmdMeta.version || parentMeta.version;
2248
+ usageLines.push(colors.gray(`${cmdMeta.description} (${commandName + (version$7 ? ` v${version$7}` : "")})`), "");
2249
2249
  const hasOptions = argLines.length > 0 || posLines.length > 0;
2250
2250
  usageLines.push(`${colors.underline(colors.bold("USAGE"))} \`${commandName}${hasOptions ? " [OPTIONS]" : ""} ${usageLine.join(" ")}\``, "");
2251
2251
  if (posLines.length > 0) {
@@ -19837,9 +19837,9 @@ var require_supports_color = /* @__PURE__ */ __commonJSMin(((exports, module) =>
19837
19837
  if ("TEAMCITY_VERSION" in env) return /^(9\.(0*[1-9]\d*)\.|\d{2,}\.)/.test(env.TEAMCITY_VERSION) ? 1 : 0;
19838
19838
  if (env.COLORTERM === "truecolor") return 3;
19839
19839
  if ("TERM_PROGRAM" in env) {
19840
- const version$6 = parseInt((env.TERM_PROGRAM_VERSION || "").split(".")[0], 10);
19840
+ const version$7 = parseInt((env.TERM_PROGRAM_VERSION || "").split(".")[0], 10);
19841
19841
  switch (env.TERM_PROGRAM) {
19842
- case "iTerm.app": return version$6 >= 3 ? 3 : 2;
19842
+ case "iTerm.app": return version$7 >= 3 ? 3 : 2;
19843
19843
  case "Apple_Terminal": return 2;
19844
19844
  }
19845
19845
  }
@@ -21979,7 +21979,7 @@ var require_eslint_scope = /* @__PURE__ */ __commonJSMin(((exports) => {
21979
21979
  this.visit(node$2.name);
21980
21980
  }
21981
21981
  };
21982
- const version$5 = "8.4.0";
21982
+ const version$6 = "8.4.0";
21983
21983
  /**
21984
21984
  * Set the default options
21985
21985
  * @returns {Object} options
@@ -22053,7 +22053,7 @@ var require_eslint_scope = /* @__PURE__ */ __commonJSMin(((exports) => {
22053
22053
  exports.ScopeManager = ScopeManager;
22054
22054
  exports.Variable = Variable;
22055
22055
  exports.analyze = analyze$2;
22056
- exports.version = version$5;
22056
+ exports.version = version$6;
22057
22057
  }));
22058
22058
 
22059
22059
  //#endregion
@@ -22215,19 +22215,19 @@ var require_semver$1 = /* @__PURE__ */ __commonJSMin(((exports, module) => {
22215
22215
  const parseOptions$3 = require_parse_options();
22216
22216
  const { compareIdentifiers } = require_identifiers();
22217
22217
  var SemVer$15 = class SemVer$15 {
22218
- constructor(version$6, options$1) {
22218
+ constructor(version$7, options$1) {
22219
22219
  options$1 = parseOptions$3(options$1);
22220
- if (version$6 instanceof SemVer$15) if (version$6.loose === !!options$1.loose && version$6.includePrerelease === !!options$1.includePrerelease) return version$6;
22221
- else version$6 = version$6.version;
22222
- else if (typeof version$6 !== "string") throw new TypeError(`Invalid version. Must be a string. Got type "${typeof version$6}".`);
22223
- if (version$6.length > MAX_LENGTH) throw new TypeError(`version is longer than ${MAX_LENGTH} characters`);
22224
- debug$21("SemVer", version$6, options$1);
22220
+ if (version$7 instanceof SemVer$15) if (version$7.loose === !!options$1.loose && version$7.includePrerelease === !!options$1.includePrerelease) return version$7;
22221
+ else version$7 = version$7.version;
22222
+ else if (typeof version$7 !== "string") throw new TypeError(`Invalid version. Must be a string. Got type "${typeof version$7}".`);
22223
+ if (version$7.length > MAX_LENGTH) throw new TypeError(`version is longer than ${MAX_LENGTH} characters`);
22224
+ debug$21("SemVer", version$7, options$1);
22225
22225
  this.options = options$1;
22226
22226
  this.loose = !!options$1.loose;
22227
22227
  this.includePrerelease = !!options$1.includePrerelease;
22228
- const m$7 = version$6.trim().match(options$1.loose ? re$3[t$9.LOOSE] : re$3[t$9.FULL]);
22229
- if (!m$7) throw new TypeError(`Invalid Version: ${version$6}`);
22230
- this.raw = version$6;
22228
+ const m$7 = version$7.trim().match(options$1.loose ? re$3[t$9.LOOSE] : re$3[t$9.FULL]);
22229
+ if (!m$7) throw new TypeError(`Invalid Version: ${version$7}`);
22230
+ this.raw = version$7;
22231
22231
  this.major = +m$7[1];
22232
22232
  this.minor = +m$7[2];
22233
22233
  this.patch = +m$7[3];
@@ -22390,10 +22390,10 @@ var require_semver$1 = /* @__PURE__ */ __commonJSMin(((exports, module) => {
22390
22390
  //#region ../../node_modules/.pnpm/semver@7.7.3/node_modules/semver/functions/parse.js
22391
22391
  var require_parse = /* @__PURE__ */ __commonJSMin(((exports, module) => {
22392
22392
  const SemVer$14 = require_semver$1();
22393
- const parse$18 = (version$6, options$1, throwErrors = false) => {
22394
- if (version$6 instanceof SemVer$14) return version$6;
22393
+ const parse$18 = (version$7, options$1, throwErrors = false) => {
22394
+ if (version$7 instanceof SemVer$14) return version$7;
22395
22395
  try {
22396
- return new SemVer$14(version$6, options$1);
22396
+ return new SemVer$14(version$7, options$1);
22397
22397
  } catch (er$1) {
22398
22398
  if (!throwErrors) return null;
22399
22399
  throw er$1;
@@ -22406,8 +22406,8 @@ var require_parse = /* @__PURE__ */ __commonJSMin(((exports, module) => {
22406
22406
  //#region ../../node_modules/.pnpm/semver@7.7.3/node_modules/semver/functions/valid.js
22407
22407
  var require_valid$1 = /* @__PURE__ */ __commonJSMin(((exports, module) => {
22408
22408
  const parse$17 = require_parse();
22409
- const valid$1 = (version$6, options$1) => {
22410
- const v$6 = parse$17(version$6, options$1);
22409
+ const valid$1 = (version$7, options$1) => {
22410
+ const v$6 = parse$17(version$7, options$1);
22411
22411
  return v$6 ? v$6.version : null;
22412
22412
  };
22413
22413
  module.exports = valid$1;
@@ -22417,8 +22417,8 @@ var require_valid$1 = /* @__PURE__ */ __commonJSMin(((exports, module) => {
22417
22417
  //#region ../../node_modules/.pnpm/semver@7.7.3/node_modules/semver/functions/clean.js
22418
22418
  var require_clean = /* @__PURE__ */ __commonJSMin(((exports, module) => {
22419
22419
  const parse$16 = require_parse();
22420
- const clean$1 = (version$6, options$1) => {
22421
- const s$12 = parse$16(version$6.trim().replace(/^[=v]+/, ""), options$1);
22420
+ const clean$1 = (version$7, options$1) => {
22421
+ const s$12 = parse$16(version$7.trim().replace(/^[=v]+/, ""), options$1);
22422
22422
  return s$12 ? s$12.version : null;
22423
22423
  };
22424
22424
  module.exports = clean$1;
@@ -22428,14 +22428,14 @@ var require_clean = /* @__PURE__ */ __commonJSMin(((exports, module) => {
22428
22428
  //#region ../../node_modules/.pnpm/semver@7.7.3/node_modules/semver/functions/inc.js
22429
22429
  var require_inc = /* @__PURE__ */ __commonJSMin(((exports, module) => {
22430
22430
  const SemVer$13 = require_semver$1();
22431
- const inc$1 = (version$6, release, options$1, identifier, identifierBase) => {
22431
+ const inc$1 = (version$7, release, options$1, identifier, identifierBase) => {
22432
22432
  if (typeof options$1 === "string") {
22433
22433
  identifierBase = identifier;
22434
22434
  identifier = options$1;
22435
22435
  options$1 = void 0;
22436
22436
  }
22437
22437
  try {
22438
- return new SemVer$13(version$6 instanceof SemVer$13 ? version$6.version : version$6, options$1).inc(release, identifier, identifierBase).version;
22438
+ return new SemVer$13(version$7 instanceof SemVer$13 ? version$7.version : version$7, options$1).inc(release, identifier, identifierBase).version;
22439
22439
  } catch (er$1) {
22440
22440
  return null;
22441
22441
  }
@@ -22500,8 +22500,8 @@ var require_patch = /* @__PURE__ */ __commonJSMin(((exports, module) => {
22500
22500
  //#region ../../node_modules/.pnpm/semver@7.7.3/node_modules/semver/functions/prerelease.js
22501
22501
  var require_prerelease = /* @__PURE__ */ __commonJSMin(((exports, module) => {
22502
22502
  const parse$14 = require_parse();
22503
- const prerelease$1 = (version$6, options$1) => {
22504
- const parsed = parse$14(version$6, options$1);
22503
+ const prerelease$1 = (version$7, options$1) => {
22504
+ const parsed = parse$14(version$7, options$1);
22505
22505
  return parsed && parsed.prerelease.length ? parsed.prerelease : null;
22506
22506
  };
22507
22507
  module.exports = prerelease$1;
@@ -22646,17 +22646,17 @@ var require_coerce = /* @__PURE__ */ __commonJSMin(((exports, module) => {
22646
22646
  const SemVer$7 = require_semver$1();
22647
22647
  const parse$13 = require_parse();
22648
22648
  const { safeRe: re$2, t: t$8 } = require_re();
22649
- const coerce$1 = (version$6, options$1) => {
22650
- if (version$6 instanceof SemVer$7) return version$6;
22651
- if (typeof version$6 === "number") version$6 = String(version$6);
22652
- if (typeof version$6 !== "string") return null;
22649
+ const coerce$1 = (version$7, options$1) => {
22650
+ if (version$7 instanceof SemVer$7) return version$7;
22651
+ if (typeof version$7 === "number") version$7 = String(version$7);
22652
+ if (typeof version$7 !== "string") return null;
22653
22653
  options$1 = options$1 || {};
22654
22654
  let match = null;
22655
- if (!options$1.rtl) match = version$6.match(options$1.includePrerelease ? re$2[t$8.COERCEFULL] : re$2[t$8.COERCE]);
22655
+ if (!options$1.rtl) match = version$7.match(options$1.includePrerelease ? re$2[t$8.COERCEFULL] : re$2[t$8.COERCE]);
22656
22656
  else {
22657
22657
  const coerceRtlRegex = options$1.includePrerelease ? re$2[t$8.COERCERTLFULL] : re$2[t$8.COERCERTL];
22658
22658
  let next;
22659
- while ((next = coerceRtlRegex.exec(version$6)) && (!match || match.index + match[0].length !== version$6.length)) {
22659
+ while ((next = coerceRtlRegex.exec(version$7)) && (!match || match.index + match[0].length !== version$7.length)) {
22660
22660
  if (!match || next.index + next[0].length !== match.index + match[0].length) match = next;
22661
22661
  coerceRtlRegex.lastIndex = next.index + next[1].length + next[2].length;
22662
22662
  }
@@ -22800,14 +22800,14 @@ var require_range = /* @__PURE__ */ __commonJSMin(((exports, module) => {
22800
22800
  });
22801
22801
  });
22802
22802
  }
22803
- test(version$6) {
22804
- if (!version$6) return false;
22805
- if (typeof version$6 === "string") try {
22806
- version$6 = new SemVer$6(version$6, this.options);
22803
+ test(version$7) {
22804
+ if (!version$7) return false;
22805
+ if (typeof version$7 === "string") try {
22806
+ version$7 = new SemVer$6(version$7, this.options);
22807
22807
  } catch (er$1) {
22808
22808
  return false;
22809
22809
  }
22810
- for (let i$10 = 0; i$10 < this.set.length; i$10++) if (testSet(this.set[i$10], version$6, this.options)) return true;
22810
+ for (let i$10 = 0; i$10 < this.set.length; i$10++) if (testSet(this.set[i$10], version$7, this.options)) return true;
22811
22811
  return false;
22812
22812
  }
22813
22813
  };
@@ -22960,15 +22960,15 @@ var require_range = /* @__PURE__ */ __commonJSMin(((exports, module) => {
22960
22960
  else to = `<=${to}`;
22961
22961
  return `${from} ${to}`.trim();
22962
22962
  };
22963
- const testSet = (set$1, version$6, options$1) => {
22964
- for (let i$10 = 0; i$10 < set$1.length; i$10++) if (!set$1[i$10].test(version$6)) return false;
22965
- if (version$6.prerelease.length && !options$1.includePrerelease) {
22963
+ const testSet = (set$1, version$7, options$1) => {
22964
+ for (let i$10 = 0; i$10 < set$1.length; i$10++) if (!set$1[i$10].test(version$7)) return false;
22965
+ if (version$7.prerelease.length && !options$1.includePrerelease) {
22966
22966
  for (let i$10 = 0; i$10 < set$1.length; i$10++) {
22967
22967
  debug$20(set$1[i$10].semver);
22968
22968
  if (set$1[i$10].semver === Comparator$4.ANY) continue;
22969
22969
  if (set$1[i$10].semver.prerelease.length > 0) {
22970
22970
  const allowed = set$1[i$10].semver;
22971
- if (allowed.major === version$6.major && allowed.minor === version$6.minor && allowed.patch === version$6.patch) return true;
22971
+ if (allowed.major === version$7.major && allowed.minor === version$7.minor && allowed.patch === version$7.patch) return true;
22972
22972
  }
22973
22973
  }
22974
22974
  return false;
@@ -23010,15 +23010,15 @@ var require_comparator = /* @__PURE__ */ __commonJSMin(((exports, module) => {
23010
23010
  toString() {
23011
23011
  return this.value;
23012
23012
  }
23013
- test(version$6) {
23014
- debug$19("Comparator.test", version$6, this.options.loose);
23015
- if (this.semver === ANY$2 || version$6 === ANY$2) return true;
23016
- if (typeof version$6 === "string") try {
23017
- version$6 = new SemVer$5(version$6, this.options);
23013
+ test(version$7) {
23014
+ debug$19("Comparator.test", version$7, this.options.loose);
23015
+ if (this.semver === ANY$2 || version$7 === ANY$2) return true;
23016
+ if (typeof version$7 === "string") try {
23017
+ version$7 = new SemVer$5(version$7, this.options);
23018
23018
  } catch (er$1) {
23019
23019
  return false;
23020
23020
  }
23021
- return cmp$1(version$6, this.operator, this.semver, this.options);
23021
+ return cmp$1(version$7, this.operator, this.semver, this.options);
23022
23022
  }
23023
23023
  intersects(comp, options$1) {
23024
23024
  if (!(comp instanceof Comparator$3)) throw new TypeError("a Comparator is required");
@@ -23053,13 +23053,13 @@ var require_comparator = /* @__PURE__ */ __commonJSMin(((exports, module) => {
23053
23053
  //#region ../../node_modules/.pnpm/semver@7.7.3/node_modules/semver/functions/satisfies.js
23054
23054
  var require_satisfies = /* @__PURE__ */ __commonJSMin(((exports, module) => {
23055
23055
  const Range$9 = require_range();
23056
- const satisfies$4 = (version$6, range$3, options$1) => {
23056
+ const satisfies$4 = (version$7, range$3, options$1) => {
23057
23057
  try {
23058
23058
  range$3 = new Range$9(range$3, options$1);
23059
23059
  } catch (er$1) {
23060
23060
  return false;
23061
23061
  }
23062
- return range$3.test(version$6);
23062
+ return range$3.test(version$7);
23063
23063
  };
23064
23064
  module.exports = satisfies$4;
23065
23065
  }));
@@ -23192,8 +23192,8 @@ var require_outside = /* @__PURE__ */ __commonJSMin(((exports, module) => {
23192
23192
  const lt$1 = require_lt();
23193
23193
  const lte$2 = require_lte();
23194
23194
  const gte$2 = require_gte();
23195
- const outside$3 = (version$6, range$3, hilo, options$1) => {
23196
- version$6 = new SemVer$1(version$6, options$1);
23195
+ const outside$3 = (version$7, range$3, hilo, options$1) => {
23196
+ version$7 = new SemVer$1(version$7, options$1);
23197
23197
  range$3 = new Range$3(range$3, options$1);
23198
23198
  let gtfn, ltefn, ltfn, comp, ecomp;
23199
23199
  switch (hilo) {
@@ -23213,7 +23213,7 @@ var require_outside = /* @__PURE__ */ __commonJSMin(((exports, module) => {
23213
23213
  break;
23214
23214
  default: throw new TypeError("Must provide a hilo val of \"<\" or \">\"");
23215
23215
  }
23216
- if (satisfies$3(version$6, range$3, options$1)) return false;
23216
+ if (satisfies$3(version$7, range$3, options$1)) return false;
23217
23217
  for (let i$10 = 0; i$10 < range$3.set.length; ++i$10) {
23218
23218
  const comparators = range$3.set[i$10];
23219
23219
  let high = null;
@@ -23226,8 +23226,8 @@ var require_outside = /* @__PURE__ */ __commonJSMin(((exports, module) => {
23226
23226
  else if (ltfn(comparator.semver, low.semver, options$1)) low = comparator;
23227
23227
  });
23228
23228
  if (high.operator === comp || high.operator === ecomp) return false;
23229
- if ((!low.operator || low.operator === comp) && ltefn(version$6, low.semver)) return false;
23230
- else if (low.operator === ecomp && ltfn(version$6, low.semver)) return false;
23229
+ if ((!low.operator || low.operator === comp) && ltefn(version$7, low.semver)) return false;
23230
+ else if (low.operator === ecomp && ltfn(version$7, low.semver)) return false;
23231
23231
  }
23232
23232
  return true;
23233
23233
  };
@@ -23238,7 +23238,7 @@ var require_outside = /* @__PURE__ */ __commonJSMin(((exports, module) => {
23238
23238
  //#region ../../node_modules/.pnpm/semver@7.7.3/node_modules/semver/ranges/gtr.js
23239
23239
  var require_gtr = /* @__PURE__ */ __commonJSMin(((exports, module) => {
23240
23240
  const outside$2 = require_outside();
23241
- const gtr$1 = (version$6, range$3, options$1) => outside$2(version$6, range$3, ">", options$1);
23241
+ const gtr$1 = (version$7, range$3, options$1) => outside$2(version$7, range$3, ">", options$1);
23242
23242
  module.exports = gtr$1;
23243
23243
  }));
23244
23244
 
@@ -23246,7 +23246,7 @@ var require_gtr = /* @__PURE__ */ __commonJSMin(((exports, module) => {
23246
23246
  //#region ../../node_modules/.pnpm/semver@7.7.3/node_modules/semver/ranges/ltr.js
23247
23247
  var require_ltr = /* @__PURE__ */ __commonJSMin(((exports, module) => {
23248
23248
  const outside$1 = require_outside();
23249
- const ltr$1 = (version$6, range$3, options$1) => outside$1(version$6, range$3, "<", options$1);
23249
+ const ltr$1 = (version$7, range$3, options$1) => outside$1(version$7, range$3, "<", options$1);
23250
23250
  module.exports = ltr$1;
23251
23251
  }));
23252
23252
 
@@ -23272,9 +23272,9 @@ var require_simplify = /* @__PURE__ */ __commonJSMin(((exports, module) => {
23272
23272
  let first$1 = null;
23273
23273
  let prev = null;
23274
23274
  const v$6 = versions.sort((a$14, b$11) => compare$2(a$14, b$11, options$1));
23275
- for (const version$6 of v$6) if (satisfies$2(version$6, range$3, options$1)) {
23276
- prev = version$6;
23277
- if (!first$1) first$1 = version$6;
23275
+ for (const version$7 of v$6) if (satisfies$2(version$7, range$3, options$1)) {
23276
+ prev = version$7;
23277
+ if (!first$1) first$1 = version$7;
23278
23278
  } else {
23279
23279
  if (prev) set$1.push([first$1, prev]);
23280
23280
  prev = null;
@@ -28491,10 +28491,10 @@ var require_acorn = /* @__PURE__ */ __commonJSMin(((exports, module) => {
28491
28491
  if (this.keywords.test(word)) type = keywords$5[word];
28492
28492
  return this.finishToken(type, word);
28493
28493
  };
28494
- var version$6 = "8.15.0";
28494
+ var version$7 = "8.15.0";
28495
28495
  Parser$2.acorn = {
28496
28496
  Parser: Parser$2,
28497
- version: version$6,
28497
+ version: version$7,
28498
28498
  defaultOptions: defaultOptions$2,
28499
28499
  Position: Position$1,
28500
28500
  SourceLocation: SourceLocation$2,
@@ -28543,7 +28543,7 @@ var require_acorn = /* @__PURE__ */ __commonJSMin(((exports, module) => {
28543
28543
  exports$1.tokContexts = types$2;
28544
28544
  exports$1.tokTypes = types$1;
28545
28545
  exports$1.tokenizer = tokenizer;
28546
- exports$1.version = version$6;
28546
+ exports$1.version = version$7;
28547
28547
  }));
28548
28548
  }));
28549
28549
 
@@ -29369,11 +29369,11 @@ var require_espree = /* @__PURE__ */ __commonJSMin(((exports) => {
29369
29369
  * @returns {number} normalized ECMAScript version
29370
29370
  */
29371
29371
  function normalizeEcmaVersion$2(ecmaVersion = 5) {
29372
- let version$6 = ecmaVersion === "latest" ? getLatestEcmaVersion$1() : ecmaVersion;
29373
- if (typeof version$6 !== "number") throw new Error(`ecmaVersion must be a number or "latest". Received value of type ${typeof ecmaVersion} instead.`);
29374
- if (version$6 >= 2015) version$6 -= 2009;
29375
- if (!SUPPORTED_VERSIONS.includes(version$6)) throw new Error("Invalid ecmaVersion.");
29376
- return version$6;
29372
+ let version$7 = ecmaVersion === "latest" ? getLatestEcmaVersion$1() : ecmaVersion;
29373
+ if (typeof version$7 !== "number") throw new Error(`ecmaVersion must be a number or "latest". Received value of type ${typeof ecmaVersion} instead.`);
29374
+ if (version$7 >= 2015) version$7 -= 2009;
29375
+ if (!SUPPORTED_VERSIONS.includes(version$7)) throw new Error("Invalid ecmaVersion.");
29376
+ return version$7;
29377
29377
  }
29378
29378
  /**
29379
29379
  * Normalize sourceType from the initial config
@@ -29698,7 +29698,7 @@ var require_espree = /* @__PURE__ */ __commonJSMin(((exports) => {
29698
29698
  function parse$11(code$1, options$1) {
29699
29699
  return new (parsers.get(options$1))(options$1, code$1).parse();
29700
29700
  }
29701
- const version$4 = version$1$1;
29701
+ const version$5 = version$1$1;
29702
29702
  const name$1 = "espree";
29703
29703
  /* istanbul ignore next */
29704
29704
  const VisitorKeys = function() {
@@ -29721,7 +29721,7 @@ var require_espree = /* @__PURE__ */ __commonJSMin(((exports) => {
29721
29721
  exports.parse = parse$11;
29722
29722
  exports.supportedEcmaVersions = supportedEcmaVersions;
29723
29723
  exports.tokenize = tokenize;
29724
- exports.version = version$4;
29724
+ exports.version = version$5;
29725
29725
  }));
29726
29726
 
29727
29727
  //#endregion
@@ -50210,16 +50210,16 @@ var require_regexpp = /* @__PURE__ */ __commonJSMin(((exports) => {
50210
50210
  const scValueSets = new DataSet("Adlam Adlm Aghb Ahom Anatolian_Hieroglyphs Arab Arabic Armenian Armi Armn Avestan Avst Bali Balinese Bamu Bamum Bass Bassa_Vah Batak Batk Beng Bengali Bhaiksuki Bhks Bopo Bopomofo Brah Brahmi Brai Braille Bugi Buginese Buhd Buhid Cakm Canadian_Aboriginal Cans Cari Carian Caucasian_Albanian Chakma Cham Cher Cherokee Common Copt Coptic Cprt Cuneiform Cypriot Cyrillic Cyrl Deseret Deva Devanagari Dsrt Dupl Duployan Egyp Egyptian_Hieroglyphs Elba Elbasan Ethi Ethiopic Geor Georgian Glag Glagolitic Gonm Goth Gothic Gran Grantha Greek Grek Gujarati Gujr Gurmukhi Guru Han Hang Hangul Hani Hano Hanunoo Hatr Hatran Hebr Hebrew Hira Hiragana Hluw Hmng Hung Imperial_Aramaic Inherited Inscriptional_Pahlavi Inscriptional_Parthian Ital Java Javanese Kaithi Kali Kana Kannada Katakana Kayah_Li Khar Kharoshthi Khmer Khmr Khoj Khojki Khudawadi Knda Kthi Lana Lao Laoo Latin Latn Lepc Lepcha Limb Limbu Lina Linb Linear_A Linear_B Lisu Lyci Lycian Lydi Lydian Mahajani Mahj Malayalam Mand Mandaic Mani Manichaean Marc Marchen Masaram_Gondi Meetei_Mayek Mend Mende_Kikakui Merc Mero Meroitic_Cursive Meroitic_Hieroglyphs Miao Mlym Modi Mong Mongolian Mro Mroo Mtei Mult Multani Myanmar Mymr Nabataean Narb Nbat New_Tai_Lue Newa Nko Nkoo Nshu Nushu Ogam Ogham Ol_Chiki Olck Old_Hungarian Old_Italic Old_North_Arabian Old_Permic Old_Persian Old_South_Arabian Old_Turkic Oriya Orkh Orya Osage Osge Osma Osmanya Pahawh_Hmong Palm Palmyrene Pau_Cin_Hau Pauc Perm Phag Phags_Pa Phli Phlp Phnx Phoenician Plrd Prti Psalter_Pahlavi Qaac Qaai Rejang Rjng Runic Runr Samaritan Samr Sarb Saur Saurashtra Sgnw Sharada Shavian Shaw Shrd Sidd Siddham SignWriting Sind Sinh Sinhala Sora Sora_Sompeng Soyo Soyombo Sund Sundanese Sylo Syloti_Nagri Syrc Syriac Tagalog Tagb Tagbanwa Tai_Le Tai_Tham Tai_Viet Takr Takri Tale Talu Tamil Taml Tang Tangut Tavt Telu Telugu Tfng Tglg Thaa Thaana Thai Tibetan Tibt Tifinagh Tirh Tirhuta Ugar Ugaritic Vai Vaii Wara Warang_Citi Xpeo Xsux Yi Yiii Zanabazar_Square Zanb Zinh Zyyy", "Dogr Dogra Gong Gunjala_Gondi Hanifi_Rohingya Maka Makasar Medefaidrin Medf Old_Sogdian Rohg Sogd Sogdian Sogo", "Elym Elymaic Hmnp Nand Nandinagari Nyiakeng_Puachue_Hmong Wancho Wcho", "Chorasmian Chrs Diak Dives_Akuru Khitan_Small_Script Kits Yezi Yezidi", "Cpmn Cypro_Minoan Old_Uyghur Ougr Tangsa Tnsa Toto Vith Vithkuqi", "Berf Beria_Erfe Gara Garay Gukh Gurung_Khema Hrkt Katakana_Or_Hiragana Kawi Kirat_Rai Krai Nag_Mundari Nagm Ol_Onal Onao Sidetic Sidt Sunu Sunuwar Tai_Yo Tayo Todhri Todr Tolong_Siki Tols Tulu_Tigalari Tutg Unknown Zzzz", "", "", "");
50211
50211
  const binPropertySets = new DataSet("AHex ASCII ASCII_Hex_Digit Alpha Alphabetic Any Assigned Bidi_C Bidi_Control Bidi_M Bidi_Mirrored CI CWCF CWCM CWKCF CWL CWT CWU Case_Ignorable Cased Changes_When_Casefolded Changes_When_Casemapped Changes_When_Lowercased Changes_When_NFKC_Casefolded Changes_When_Titlecased Changes_When_Uppercased DI Dash Default_Ignorable_Code_Point Dep Deprecated Dia Diacritic Emoji Emoji_Component Emoji_Modifier Emoji_Modifier_Base Emoji_Presentation Ext Extender Gr_Base Gr_Ext Grapheme_Base Grapheme_Extend Hex Hex_Digit IDC IDS IDSB IDST IDS_Binary_Operator IDS_Trinary_Operator ID_Continue ID_Start Ideo Ideographic Join_C Join_Control LOE Logical_Order_Exception Lower Lowercase Math NChar Noncharacter_Code_Point Pat_Syn Pat_WS Pattern_Syntax Pattern_White_Space QMark Quotation_Mark RI Radical Regional_Indicator SD STerm Sentence_Terminal Soft_Dotted Term Terminal_Punctuation UIdeo Unified_Ideograph Upper Uppercase VS Variation_Selector White_Space XIDC XIDS XID_Continue XID_Start space", "Extended_Pictographic", "", "EBase EComp EMod EPres ExtPict", "", "", "", "", "");
50212
50212
  const binPropertyOfStringsSets = new DataSet("", "", "", "", "", "", "Basic_Emoji Emoji_Keycap_Sequence RGI_Emoji RGI_Emoji_Flag_Sequence RGI_Emoji_Modifier_Sequence RGI_Emoji_Tag_Sequence RGI_Emoji_ZWJ_Sequence", "", "");
50213
- function isValidUnicodeProperty(version$6, name$2, value) {
50214
- if (gcNameSet.has(name$2)) return version$6 >= 2018 && gcValueSets.es2018.has(value);
50215
- if (scNameSet.has(name$2)) return version$6 >= 2018 && scValueSets.es2018.has(value) || version$6 >= 2019 && scValueSets.es2019.has(value) || version$6 >= 2020 && scValueSets.es2020.has(value) || version$6 >= 2021 && scValueSets.es2021.has(value) || version$6 >= 2022 && scValueSets.es2022.has(value) || version$6 >= 2023 && scValueSets.es2023.has(value);
50213
+ function isValidUnicodeProperty(version$7, name$2, value) {
50214
+ if (gcNameSet.has(name$2)) return version$7 >= 2018 && gcValueSets.es2018.has(value);
50215
+ if (scNameSet.has(name$2)) return version$7 >= 2018 && scValueSets.es2018.has(value) || version$7 >= 2019 && scValueSets.es2019.has(value) || version$7 >= 2020 && scValueSets.es2020.has(value) || version$7 >= 2021 && scValueSets.es2021.has(value) || version$7 >= 2022 && scValueSets.es2022.has(value) || version$7 >= 2023 && scValueSets.es2023.has(value);
50216
50216
  return false;
50217
50217
  }
50218
- function isValidLoneUnicodeProperty(version$6, value) {
50219
- return version$6 >= 2018 && binPropertySets.es2018.has(value) || version$6 >= 2019 && binPropertySets.es2019.has(value) || version$6 >= 2021 && binPropertySets.es2021.has(value);
50218
+ function isValidLoneUnicodeProperty(version$7, value) {
50219
+ return version$7 >= 2018 && binPropertySets.es2018.has(value) || version$7 >= 2019 && binPropertySets.es2019.has(value) || version$7 >= 2021 && binPropertySets.es2021.has(value);
50220
50220
  }
50221
- function isValidLoneUnicodePropertyOfString(version$6, value) {
50222
- return version$6 >= 2024 && binPropertyOfStringsSets.es2024.has(value);
50221
+ function isValidLoneUnicodePropertyOfString(version$7, value) {
50222
+ return version$7 >= 2024 && binPropertyOfStringsSets.es2024.has(value);
50223
50223
  }
50224
50224
  const BACKSPACE = 8;
50225
50225
  const CHARACTER_TABULATION = 9;
@@ -101152,9 +101152,9 @@ var require_config = /* @__PURE__ */ __commonJSMin(((exports, module) => {
101152
101152
  name$2 = object$1.meta.name;
101153
101153
  if (!name$2) return null;
101154
101154
  }
101155
- let version$6 = object$1.version;
101156
- if (!version$6) version$6 = object$1.meta && object$1.meta.version;
101157
- if (version$6) return `${name$2}@${version$6}`;
101155
+ let version$7 = object$1.version;
101156
+ if (!version$7) version$7 = object$1.meta && object$1.meta.version;
101157
+ if (version$7) return `${name$2}@${version$7}`;
101158
101158
  return name$2;
101159
101159
  }
101160
101160
  /**
@@ -109223,7 +109223,7 @@ var require_eslint = /* @__PURE__ */ __commonJSMin(((exports, module) => {
109223
109223
  const path$11 = __require$1("node:path");
109224
109224
  const { pathToFileURL: pathToFileURL$1 } = __require$1("node:url");
109225
109225
  const { SHARE_ENV, Worker } = __require$1("node:worker_threads");
109226
- const { version: version$3 } = require_package$2();
109226
+ const { version: version$4 } = require_package$2();
109227
109227
  const { defaultConfig: defaultConfig$1 } = require_default_config();
109228
109228
  const timing = require_timing();
109229
109229
  const { createDebug, findFiles, getCacheFile: getCacheFile$1, isNonEmptyString: isNonEmptyString$1, isArrayOfNonEmptyString: isArrayOfNonEmptyString$1, createIgnoreResult: createIgnoreResult$1, isErrorMessage: isErrorMessage$1, getPlaceholderPath, processOptions: processOptions$1, loadOptionsFromModule, getFixerForFixTypes, verifyText: verifyText$1, lintFile, createLinter, createLintResultCache, createDefaultConfigs, createConfigLoader } = require_eslint_helpers();
@@ -109683,7 +109683,7 @@ var require_eslint = /* @__PURE__ */ __commonJSMin(((exports, module) => {
109683
109683
  * @type {string}
109684
109684
  */
109685
109685
  static get version() {
109686
- return version$3;
109686
+ return version$4;
109687
109687
  }
109688
109688
  /**
109689
109689
  * The default configuration that ESLint uses internally. This is provided for tooling that wants to calculate configurations using the same defaults as ESLint.
@@ -112208,8 +112208,8 @@ var require_eslintrc = /* @__PURE__ */ __commonJSMin(((exports) => {
112208
112208
  if (debug$2$1.enabled) {
112209
112209
  let nameAndVersion = null;
112210
112210
  try {
112211
- const { version: version$6 = "unknown" } = require$1$1(resolve$3(`${request$2}/package.json`, relativeTo));
112212
- nameAndVersion = `${request$2}@${version$6}`;
112211
+ const { version: version$7 = "unknown" } = require$1$1(resolve$3(`${request$2}/package.json`, relativeTo));
112212
+ nameAndVersion = `${request$2}@${version$7}`;
112213
112213
  } catch (error) {
112214
112214
  debug$2$1("package.json was not found:", error.message);
112215
112215
  nameAndVersion = request$2;
@@ -113556,11 +113556,11 @@ var require_eslint_recommended = /* @__PURE__ */ __commonJSMin(((exports, module
113556
113556
  * @author Nicholas C. Zakas
113557
113557
  */
113558
113558
  var require_src = /* @__PURE__ */ __commonJSMin(((exports, module) => {
113559
- const { name, version: version$2 } = require_package();
113559
+ const { name, version: version$3 } = require_package();
113560
113560
  module.exports = {
113561
113561
  meta: {
113562
113562
  name,
113563
- version: version$2
113563
+ version: version$3
113564
113564
  },
113565
113565
  configs: {
113566
113566
  all: require_eslint_all(),
@@ -114651,7 +114651,7 @@ var require_legacy_eslint = /* @__PURE__ */ __commonJSMin(((exports, module) =>
114651
114651
  const { CLIEngine, getCLIEngineInternalSlots } = require_cli_engine();
114652
114652
  const BuiltinRules = require_rules$2();
114653
114653
  const { Legacy: { ConfigOps: { getRuleSeverity } } } = require_eslintrc();
114654
- const { version: version$1 } = require_package$2();
114654
+ const { version: version$2 } = require_package$2();
114655
114655
  /** @typedef {import("../cli-engine/cli-engine").LintReport} CLIEngineLintReport */
114656
114656
  /** @typedef {import("../types").ESLint.ConfigData} ConfigData */
114657
114657
  /** @typedef {import("../types").ESLint.DeprecatedRuleUse} DeprecatedRuleInfo */
@@ -114944,7 +114944,7 @@ var require_legacy_eslint = /* @__PURE__ */ __commonJSMin(((exports, module) =>
114944
114944
  * @type {string}
114945
114945
  */
114946
114946
  static get version() {
114947
- return version$1;
114947
+ return version$2;
114948
114948
  }
114949
114949
  /**
114950
114950
  * Outputs fixes from the given results to files.
@@ -116272,9 +116272,9 @@ var require_vue_eslint_parser = /* @__PURE__ */ __commonJSMin(((exports) => {
116272
116272
  function getDefaultEcmaVersion() {
116273
116273
  return getLatestEcmaVersion(getEspree());
116274
116274
  }
116275
- function normalizeEcmaVersion(version$6) {
116276
- if (version$6 > 5 && version$6 < 2015) return version$6 + 2009;
116277
- return version$6;
116275
+ function normalizeEcmaVersion(version$7) {
116276
+ if (version$7 > 5 && version$7 < 2015) return version$7 + 2009;
116277
+ return version$7;
116278
116278
  }
116279
116279
  function getLatestEcmaVersion(espree$5) {
116280
116280
  return normalizeEcmaVersion(espree$5.latestEcmaVersion);
@@ -123872,7 +123872,12 @@ var import_vue_eslint_parser = require_vue_eslint_parser();
123872
123872
  const require$1 = createRequire(import.meta.url);
123873
123873
  async function loadImportMap(cwd$2, targetPackage) {
123874
123874
  try {
123875
- const mapPath = join$1(dirname$2(await resolvePackageJSON(targetPackage, { url: cwd$2 })), "dist/json/importMap.json");
123875
+ const pkgPath = await resolvePackageJSON(targetPackage, {
123876
+ url: cwd$2,
123877
+ try: true
123878
+ });
123879
+ if (!pkgPath) return null;
123880
+ const mapPath = join$1(dirname$2(pkgPath), "dist/json/importMap.json");
123876
123881
  if (existsSync(mapPath)) {
123877
123882
  const content = await readFile(mapPath, "utf8");
123878
123883
  return JSON.parse(content);
@@ -124615,7 +124620,7 @@ async function detect(options$1 = {}) {
124615
124620
  return null;
124616
124621
  }
124617
124622
  function getNameAndVer(pkg$3) {
124618
- const handelVer = (version$6) => version$6?.match(/\d+(\.\d+){0,2}/)?.[0] ?? version$6;
124623
+ const handelVer = (version$7) => version$7?.match(/\d+(\.\d+){0,2}/)?.[0] ?? version$7;
124619
124624
  if (typeof pkg$3.packageManager === "string") {
124620
124625
  const [name$2, ver] = pkg$3.packageManager.replace(/^\^/, "").split("@");
124621
124626
  return {
@@ -124637,28 +124642,28 @@ async function handlePackageManager(filepath, options$1) {
124637
124642
  if (nameAndVer) {
124638
124643
  const name$2 = nameAndVer.name;
124639
124644
  const ver = nameAndVer.ver;
124640
- let version$6 = ver;
124645
+ let version$7 = ver;
124641
124646
  if (name$2 === "yarn" && ver && Number.parseInt(ver) > 1) {
124642
124647
  agent$1 = "yarn@berry";
124643
- version$6 = "berry";
124648
+ version$7 = "berry";
124644
124649
  return {
124645
124650
  name: name$2,
124646
124651
  agent: agent$1,
124647
- version: version$6
124652
+ version: version$7
124648
124653
  };
124649
124654
  } else if (name$2 === "pnpm" && ver && Number.parseInt(ver) < 7) {
124650
124655
  agent$1 = "pnpm@6";
124651
124656
  return {
124652
124657
  name: name$2,
124653
124658
  agent: agent$1,
124654
- version: version$6
124659
+ version: version$7
124655
124660
  };
124656
124661
  } else if (AGENTS.includes(name$2)) {
124657
124662
  agent$1 = name$2;
124658
124663
  return {
124659
124664
  name: name$2,
124660
124665
  agent: agent$1,
124661
- version: version$6
124666
+ version: version$7
124662
124667
  };
124663
124668
  } else return options$1.onUnknown?.(pkg$3.packageManager) ?? null;
124664
124669
  }
@@ -125826,16 +125831,16 @@ function getWorkspaceArgs(options$1) {
125826
125831
  }
125827
125832
  function parsePackageManagerField(packageManager$1) {
125828
125833
  const [name$2, _version] = (packageManager$1 || "").split("@");
125829
- const [version$6, buildMeta] = _version?.split("+") || [];
125834
+ const [version$7, buildMeta] = _version?.split("+") || [];
125830
125835
  if (name$2 && name$2 !== "-" && /^(@[a-z0-9-~][a-z0-9-._~]*\/)?[a-z0-9-~][a-z0-9-._~]*$/.test(name$2)) return {
125831
125836
  name: name$2,
125832
- version: version$6,
125837
+ version: version$7,
125833
125838
  buildMeta
125834
125839
  };
125835
125840
  const sanitized = name$2.replace(/\W+/g, "");
125836
125841
  return {
125837
125842
  name: sanitized,
125838
- version: version$6,
125843
+ version: version$7,
125839
125844
  buildMeta,
125840
125845
  warnings: [`Abnormal characters found in \`packageManager\` field, sanitizing from \`${name$2}\` to \`${sanitized}\``]
125841
125846
  };
@@ -125877,14 +125882,14 @@ async function detectPackageManager(cwd$2, options$1 = {}) {
125877
125882
  if (existsSync(packageJSONPath)) {
125878
125883
  const packageJSON = JSON.parse(await readFile(packageJSONPath, "utf8"));
125879
125884
  if (packageJSON?.packageManager) {
125880
- const { name: name$2, version: version$6 = "0.0.0", buildMeta, warnings } = parsePackageManagerField(packageJSON.packageManager);
125885
+ const { name: name$2, version: version$7 = "0.0.0", buildMeta, warnings } = parsePackageManagerField(packageJSON.packageManager);
125881
125886
  if (name$2) {
125882
- const majorVersion = version$6.split(".")[0];
125887
+ const majorVersion = version$7.split(".")[0];
125883
125888
  const packageManager$1 = packageManagers.find((pm$1) => pm$1.name === name$2 && pm$1.majorVersion === majorVersion) || packageManagers.find((pm$1) => pm$1.name === name$2);
125884
125889
  return {
125885
125890
  name: name$2,
125886
125891
  command: name$2,
125887
- version: version$6,
125892
+ version: version$7,
125888
125893
  majorVersion,
125889
125894
  buildMeta,
125890
125895
  warnings,
@@ -125958,10 +125963,10 @@ async function addDependency(name$2, options$1 = {}) {
125958
125963
  const pkgName = _name.match(/^(.[^@]+)/)?.[0];
125959
125964
  const pkg$3 = await readPackageJSON(pkgName, { url: resolvedOptions.cwd }).catch(() => ({}));
125960
125965
  if (!pkg$3.peerDependencies || pkg$3.name !== pkgName) continue;
125961
- for (const [peerDependency, version$6] of Object.entries(pkg$3.peerDependencies)) {
125966
+ for (const [peerDependency, version$7] of Object.entries(pkg$3.peerDependencies)) {
125962
125967
  if (pkg$3.peerDependenciesMeta?.[peerDependency]?.optional) continue;
125963
125968
  if (existingPkg.dependencies?.[peerDependency] || existingPkg.devDependencies?.[peerDependency]) continue;
125964
- (pkg$3.peerDependenciesMeta?.[peerDependency]?.dev ? peerDevDeps : peerDeps).push(`${peerDependency}@${version$6}`);
125969
+ (pkg$3.peerDependenciesMeta?.[peerDependency]?.dev ? peerDevDeps : peerDeps).push(`${peerDependency}@${version$7}`);
125965
125970
  }
125966
125971
  }
125967
125972
  if (peerDeps.length > 0) await addDependency(peerDeps, { ...resolvedOptions });
@@ -156376,14 +156381,14 @@ var require_source_map_consumer = /* @__PURE__ */ __commonJS({ "node_modules/.pn
156376
156381
  function BasicSourceMapConsumer(aSourceMap, aSourceMapURL) {
156377
156382
  var sourceMap$2 = aSourceMap;
156378
156383
  if (typeof aSourceMap === "string") sourceMap$2 = util$1$1.parseSourceMapInput(aSourceMap);
156379
- var version$6 = util$1$1.getArg(sourceMap$2, "version");
156384
+ var version$7 = util$1$1.getArg(sourceMap$2, "version");
156380
156385
  var sources = util$1$1.getArg(sourceMap$2, "sources");
156381
156386
  var names = util$1$1.getArg(sourceMap$2, "names", []);
156382
156387
  var sourceRoot = util$1$1.getArg(sourceMap$2, "sourceRoot", null);
156383
156388
  var sourcesContent = util$1$1.getArg(sourceMap$2, "sourcesContent", null);
156384
156389
  var mappings = util$1$1.getArg(sourceMap$2, "mappings");
156385
156390
  var file$1 = util$1$1.getArg(sourceMap$2, "file", null);
156386
- if (version$6 != this._version) throw new Error("Unsupported version: " + version$6);
156391
+ if (version$7 != this._version) throw new Error("Unsupported version: " + version$7);
156387
156392
  if (sourceRoot) sourceRoot = util$1$1.normalize(sourceRoot);
156388
156393
  sources = sources.map(String).map(util$1$1.normalize).map(function(source) {
156389
156394
  return sourceRoot && util$1$1.isAbsolute(sourceRoot) && util$1$1.isAbsolute(source) ? util$1$1.relative(sourceRoot, source) : source;
@@ -156777,9 +156782,9 @@ var require_source_map_consumer = /* @__PURE__ */ __commonJS({ "node_modules/.pn
156777
156782
  function IndexedSourceMapConsumer(aSourceMap, aSourceMapURL) {
156778
156783
  var sourceMap$2 = aSourceMap;
156779
156784
  if (typeof aSourceMap === "string") sourceMap$2 = util$1$1.parseSourceMapInput(aSourceMap);
156780
- var version$6 = util$1$1.getArg(sourceMap$2, "version");
156785
+ var version$7 = util$1$1.getArg(sourceMap$2, "version");
156781
156786
  var sections = util$1$1.getArg(sourceMap$2, "sections");
156782
- if (version$6 != this._version) throw new Error("Unsupported version: " + version$6);
156787
+ if (version$7 != this._version) throw new Error("Unsupported version: " + version$7);
156783
156788
  this._sources = new ArraySet();
156784
156789
  this._names = new ArraySet();
156785
156790
  var lastOffset = {
@@ -161713,6 +161718,19 @@ export const useAppStore = defineStore('app', {
161713
161718
  `;
161714
161719
  }
161715
161720
 
161721
+ //#endregion
161722
+ //#region ../shared/package.json
161723
+ var version$1 = "0.0.14-beta.2";
161724
+
161725
+ //#endregion
161726
+ //#region ../shared/src/utils/getTemplateSource.ts
161727
+ function getTemplateSource(templateName) {
161728
+ let tag = `v${version$1}`;
161729
+ if (version$1.includes("beta-next")) tag = `v${version$1.replace("beta-next", "beta")}`;
161730
+ else if (version$1.endsWith("-next.1")) tag = `v${version$1.slice(0, -7)}`;
161731
+ return `gh:vuetifyjs/cli/templates/${templateName}#${tag}`;
161732
+ }
161733
+
161716
161734
  //#endregion
161717
161735
  //#region ../shared/src/utils/installFeature.ts
161718
161736
  async function installFeature(feature, cwd$2, type = "vuetify") {
@@ -161723,7 +161741,7 @@ async function installFeature(feature, cwd$2, type = "vuetify") {
161723
161741
  } else {
161724
161742
  const tmp = mkdtempSync(join$1(tmpdir(), "vuetify-feature-"));
161725
161743
  try {
161726
- await downloadTemplate(`gh:vuetifyjs/templates/${templateName}`, { dir: tmp });
161744
+ await downloadTemplate(getTemplateSource(templateName), { dir: tmp });
161727
161745
  cpSync(tmp, cwd$2, { recursive: true });
161728
161746
  } finally {
161729
161747
  rmSync(tmp, {
@@ -162088,9 +162106,9 @@ async function pnpm(root$4) {
162088
162106
  async function deno(root$4) {
162089
162107
  try {
162090
162108
  const { stdout: stdout$1 } = await K("deno", ["--version"], { nodeOptions: { cwd: root$4 } });
162091
- const version$6 = stdout$1.split("\n")[0].split(" ")[1];
162092
- const [major$2] = version$6.split(".").map(Number);
162093
- if (major$2 < 2) console.warn(i18n.t("messages.deno.version_warning", { version: version$6 }));
162109
+ const version$7 = stdout$1.split("\n")[0].split(" ")[1];
162110
+ const [major$2] = version$7.split(".").map(Number);
162111
+ if (major$2 < 2) console.warn(i18n.t("messages.deno.version_warning", { version: version$7 }));
162094
162112
  } catch {}
162095
162113
  }
162096
162114
 
@@ -162162,7 +162180,7 @@ async function scaffold(options$1, callbacks = {}) {
162162
162180
  debug$24(`Copy complete.`);
162163
162181
  } else debug$24(`templatePath does not exist: ${templatePath}`);
162164
162182
  } else {
162165
- const templateSource = `gh:vuetifyjs/templates/${templateName}`;
162183
+ const templateSource = getTemplateSource(templateName);
162166
162184
  try {
162167
162185
  await downloadTemplate(templateSource, {
162168
162186
  dir: projectRoot,
@@ -162206,13 +162224,13 @@ async function scaffold(options$1, callbacks = {}) {
162206
162224
  //#endregion
162207
162225
  //#region ../shared/src/functions/create.ts
162208
162226
  async function createVuetify(options$1) {
162209
- const { version: version$6, ...args$2 } = options$1;
162227
+ const { version: version$7, ...args$2 } = options$1;
162210
162228
  const cwd$2 = args$2.cwd || process.cwd();
162211
162229
  const debug$24 = (...msg) => args$2.debug && console.log("DEBUG:", ...msg);
162212
162230
  debug$24("run args=", JSON.stringify(args$2, null, 2));
162213
162231
  debug$24("VUETIFY_CLI_TEMPLATES_PATH=", process.env.VUETIFY_CLI_TEMPLATES_PATH);
162214
162232
  console.log(createBanner());
162215
- Nt(i18n.t("messages.create.intro", { version: version$6 }));
162233
+ Nt(i18n.t("messages.create.intro", { version: version$7 }));
162216
162234
  const features$1 = typeof args$2.features === "string" ? args$2.features.split(",").filter(Boolean) : args$2.features;
162217
162235
  const rawArgs = args$2;
162218
162236
  const packageManager$1 = rawArgs.packageManager || rawArgs["package-manager"];
@@ -162824,15 +162842,15 @@ async function getPackageManager() {
162824
162842
  async function getProjectPackageJSON(cwd$2) {
162825
162843
  return readPackageJSON(cwd$2 || process.cwd());
162826
162844
  }
162827
- function extractMajor(version$6) {
162828
- if (!version$6) return null;
162829
- const match = version$6.match(/(\d+)/);
162845
+ function extractMajor(version$7) {
162846
+ if (!version$7) return null;
162847
+ const match = version$7.match(/(\d+)/);
162830
162848
  if (!match) return null;
162831
162849
  const major$2 = Number(match[1]);
162832
162850
  return Number.isNaN(major$2) ? null : major$2;
162833
162851
  }
162834
- function isVersionAtLeast(version$6, targetVersion) {
162835
- const [vMajor, vMinor, vPatch] = version$6.split(".").map(Number);
162852
+ function isVersionAtLeast(version$7, targetVersion) {
162853
+ const [vMajor, vMinor, vPatch] = version$7.split(".").map(Number);
162836
162854
  const [major$2, minor$2, patch$2] = targetVersion.split(".").map(Number);
162837
162855
  return vMajor > major$2 || vMajor === major$2 && vMinor > minor$2 || vMajor === major$2 && vMinor === minor$2 && vPatch >= patch$2;
162838
162856
  }
@@ -162862,9 +162880,9 @@ async function tryResolvePackage(pkgNames$1, { cwd: cwd$2 } = {}) {
162862
162880
  return null;
162863
162881
  }
162864
162882
  async function getPackageVersion(pkg$3, { cwd: cwd$2 } = {}) {
162865
- const version$6 = await tryResolvePackage(pkg$3, { cwd: cwd$2 });
162866
- if (!version$6) return "0.0.0";
162867
- return version$6.version || "0.0.0";
162883
+ const version$7 = await tryResolvePackage(pkg$3, { cwd: cwd$2 });
162884
+ if (!version$7) return "0.0.0";
162885
+ return version$7.version || "0.0.0";
162868
162886
  }
162869
162887
 
162870
162888
  //#endregion
@@ -163157,8 +163175,8 @@ const docs$1 = defineCommand({
163157
163175
  description: i18n.t("args.version.description")
163158
163176
  } },
163159
163177
  run: async (ctx) => {
163160
- const version$6 = ctx.args.version;
163161
- await openVuetifyDocs(version$6, { cwd: process.cwd() });
163178
+ const version$7 = ctx.args.version;
163179
+ await openVuetifyDocs(version$7, { cwd: process.cwd() });
163162
163180
  }
163163
163181
  });
163164
163182
 
@@ -163509,21 +163527,21 @@ const update$1 = defineCommand({
163509
163527
  const depsToUpdate = [];
163510
163528
  const devDepsToUpdate = [];
163511
163529
  for (const name$2 of packagesToUpdate) {
163512
- let version$6 = "@latest";
163513
- if (name$2 === "vuetify") if (isNightly) version$6 = "@npm:@vuetify/nightly@latest";
163530
+ let version$7 = "@latest";
163531
+ if (name$2 === "vuetify") if (isNightly) version$7 = "@npm:@vuetify/nightly@latest";
163514
163532
  else {
163515
163533
  const currentVersion = allDeps["vuetify"];
163516
163534
  const major$2 = extractMajor(currentVersion);
163517
163535
  if (major$2 === 2) {
163518
- version$6 = "@2";
163536
+ version$7 = "@2";
163519
163537
  R.warn(i18n.t("commands.update.deprecated_v2"));
163520
163538
  } else if (major$2 === 1) {
163521
- version$6 = "@1";
163539
+ version$7 = "@1";
163522
163540
  R.error(i18n.t("commands.update.outdated_v1"));
163523
163541
  }
163524
163542
  }
163525
- if (!!devDeps[name$2]) devDepsToUpdate.push(name$2 + version$6);
163526
- else depsToUpdate.push(name$2 + version$6);
163543
+ if (!!devDeps[name$2]) devDepsToUpdate.push(name$2 + version$7);
163544
+ else depsToUpdate.push(name$2 + version$7);
163527
163545
  }
163528
163546
  if (depsToUpdate.length > 0) try {
163529
163547
  await addDependency(depsToUpdate, { silent: !args$2.verbose });
@@ -163654,7 +163672,7 @@ const ConsoleReporter = { report: (reports) => {
163654
163672
  ]);
163655
163673
  const allFeatures = reports.flatMap((r$5) => r$5.features).filter((f$9) => documentableTypes.has(f$9.type)).map((f$9) => f$9.name);
163656
163674
  if (allFeatures.length > 0) {
163657
- const url = `https://v0.vuetifyjs.com/?features=${allFeatures.join(",")}`;
163675
+ const url = `https://0.vuetifyjs.com/?features=${allFeatures.join(",")}`;
163658
163676
  console.log(bold("Documentation"));
163659
163677
  console.log(` ${blue("→")} ${url}`);
163660
163678
  console.log();
@@ -163674,7 +163692,7 @@ const JsonReporter = { report: async (data, options$1) => {
163674
163692
 
163675
163693
  //#endregion
163676
163694
  //#region package.json
163677
- var version = "0.0.13-beta.8";
163695
+ var version = "0.0.14-beta.2";
163678
163696
 
163679
163697
  //#endregion
163680
163698
  //#region src/commands/analyze.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vuetify/cli",
3
- "version": "0.0.13-beta.8",
3
+ "version": "0.0.14-beta.2",
4
4
  "description": "Vuetify CLI",
5
5
  "type": "module",
6
6
  "files": [
@@ -20,6 +20,11 @@
20
20
  ],
21
21
  "author": "Andrey Yolkin <andreyyolkin@gmail.com>",
22
22
  "license": "MIT",
23
+ "repository": {
24
+ "type": "git",
25
+ "url": "git+https://github.com/vuetifyjs/cli.git",
26
+ "directory": "packages/cli"
27
+ },
23
28
  "devDependencies": {
24
29
  "@bomb.sh/tab": "^0.0.11",
25
30
  "@clack/prompts": "^1.0.0-alpha.9",
@@ -30,7 +35,7 @@
30
35
  "open": "^11.0.0",
31
36
  "pathe": "^2.0.3",
32
37
  "tsdown": "^0.16.8",
33
- "@vuetify/cli-shared": "0.0.13-beta.8"
38
+ "@vuetify/cli-shared": "0.0.14-beta.2"
34
39
  },
35
40
  "dependencies": {
36
41
  "@typescript-eslint/parser": "^8.53.0"