@vuetify/cli 0.0.13-beta.1 → 0.0.13-beta.3

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 +14 -7
  2. package/package.json +5 -3
package/dist/index.mjs CHANGED
@@ -163510,7 +163510,7 @@ function registerProjectArgsCompletion(completion) {
163510
163510
 
163511
163511
  //#endregion
163512
163512
  //#region package.json
163513
- var version = "0.0.13-beta.1";
163513
+ var version = "0.0.13-beta.3";
163514
163514
 
163515
163515
  //#endregion
163516
163516
  //#region src/commands/analyze.ts
@@ -163519,13 +163519,20 @@ const analyze = defineCommand({
163519
163519
  name: "analyze",
163520
163520
  description: "Analyze Vuetify usage in the project"
163521
163521
  },
163522
- args: { dir: {
163523
- type: "positional",
163524
- description: "Directory to scan",
163525
- default: "."
163526
- } },
163522
+ args: {
163523
+ dir: {
163524
+ type: "positional",
163525
+ description: "Directory to scan",
163526
+ default: "."
163527
+ },
163528
+ suppressWarnings: {
163529
+ type: "boolean",
163530
+ description: "Suppress warnings",
163531
+ default: false
163532
+ }
163533
+ },
163527
163534
  run: async ({ args: args$2 }) => {
163528
- R.warn("This command is experimental and may change in the future.");
163535
+ if (!args$2.suppressWarnings) R.warn("This command is experimental and may change in the future.");
163529
163536
  const features$1 = await analyzeProject(resolve$2(process.cwd(), args$2.dir));
163530
163537
  console.log(JSON.stringify(features$1, null, 2));
163531
163538
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vuetify/cli",
3
- "version": "0.0.13-beta.1",
3
+ "version": "0.0.13-beta.3",
4
4
  "description": "Vuetify CLI",
5
5
  "type": "module",
6
6
  "files": [
@@ -23,7 +23,6 @@
23
23
  "devDependencies": {
24
24
  "@bomb.sh/tab": "^0.0.11",
25
25
  "@clack/prompts": "^1.0.0-alpha.9",
26
- "@typescript-eslint/parser": "^8.53.0",
27
26
  "citty": "^0.1.6",
28
27
  "giget": "^2.0.0",
29
28
  "kolorist": "^1.8.0",
@@ -31,7 +30,10 @@
31
30
  "open": "^11.0.0",
32
31
  "pathe": "^2.0.3",
33
32
  "tsdown": "^0.16.8",
34
- "@vuetify/cli-shared": "0.0.13-beta.1"
33
+ "@vuetify/cli-shared": "0.0.13-beta.3"
34
+ },
35
+ "dependencies": {
36
+ "@typescript-eslint/parser": "^8.53.0"
35
37
  },
36
38
  "main": "./dist/index.mjs",
37
39
  "module": "./dist/index.mjs",