standards-cli 1.0.0 → 1.0.1

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/README.md +11 -8
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -25,14 +25,17 @@ npx standards-cli init
25
25
  ### 方式二:作为项目依赖安装 - 推荐用于团队项目
26
26
 
27
27
  ```bash
28
- # 在项目根目录下安装
29
- pnpm add -D standards-cli
30
- # 或
31
- npm install -D standards-cli
32
- #
33
- yarn add -D standards-cli
34
- #
35
- bun add -d standards-cli
28
+ # bun
29
+ bun add standards-cli
30
+
31
+ # npm
32
+ npm install standards-cli
33
+
34
+ # pnpm
35
+ pnpm add standards-cli
36
+
37
+ # yarn
38
+ yarn add standards-cli
36
39
  ```
37
40
 
38
41
  安装后,通过 npm scripts 或 pnpm exec 运行:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "standards-cli",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "一键初始化前端项目提交规范链路(cz-git + commitlint + husky + lint-staged)",
5
5
  "type": "module",
6
6
  "bin": {