@yamada-ui/cli 2.1.1-dev-20260314104337 → 2.1.1-dev-20260315020004

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 +1 -0
  2. package/package.json +4 -3
package/dist/index.mjs CHANGED
@@ -5537,6 +5537,7 @@ var package_default = {
5537
5537
  "typeanalyze": "npx analyze-trace ./trace --expandTypes=false",
5538
5538
  "lint": "eslint . --max-warnings=0 --cache",
5539
5539
  "format": "prettier . --ignore-path ../../.prettierignore --check --cache",
5540
+ "quality": "pnpm format && pnpm lint && pnpm typecheck && pnpm test",
5540
5541
  "prepack": "clean-package",
5541
5542
  "postpack": "clean-package restore"
5542
5543
  },
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@yamada-ui/cli",
3
3
  "type": "module",
4
- "version": "2.1.1-dev-20260314104337",
4
+ "version": "2.1.1-dev-20260315020004",
5
5
  "description": "The official CLI for Yamada UI projects",
6
6
  "keywords": [
7
7
  "theme",
@@ -53,7 +53,7 @@
53
53
  "sucrase": "^3.35.1",
54
54
  "validate-npm-package-name": "^7.0.2",
55
55
  "yamljs": "^0.3.0",
56
- "@yamada-ui/utils": "2.1.1-dev-20260314104337"
56
+ "@yamada-ui/utils": "2.1.1-dev-20260315020004"
57
57
  },
58
58
  "devDependencies": {
59
59
  "@types/prompts": "^2.4.9",
@@ -81,6 +81,7 @@
81
81
  "typetrace": "tsc --noEmit --generateTrace ./trace --incremental false",
82
82
  "typeanalyze": "npx analyze-trace ./trace --expandTypes=false",
83
83
  "lint": "eslint . --max-warnings=0 --cache",
84
- "format": "prettier . --ignore-path ../../.prettierignore --check --cache"
84
+ "format": "prettier . --ignore-path ../../.prettierignore --check --cache",
85
+ "quality": "pnpm format && pnpm lint && pnpm typecheck && pnpm test"
85
86
  }
86
87
  }