cli-blueprint 0.2.0 → 0.2.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.
- package/README.md +2 -2
- package/install.mjs +3 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@ npx cli-blueprint@latest install
|
|
|
8
8
|
|
|
9
9
|
默认包含:
|
|
10
10
|
- `blueprint`(CLI.Tax 工程规划 skill,`https://cli.tax/wvz6zmRWmX`)
|
|
11
|
-
- `calctool`(万能计算工具生成器,`https://cli.tax/
|
|
11
|
+
- `calctool`(万能计算工具生成器,`https://cli.tax/KKyA6xljUX`)
|
|
12
12
|
|
|
13
13
|
## 这是什么机制?
|
|
14
14
|
|
|
@@ -79,7 +79,7 @@ node install.mjs uninstall # 从相同目标卸载本包安装的 skill
|
|
|
79
79
|
## 分发给别人
|
|
80
80
|
|
|
81
81
|
### 方式 A:npm 一条命令(推荐,最简单)
|
|
82
|
-
已发布到 npm(`cli-blueprint@0.1
|
|
82
|
+
已发布到 npm(`cli-blueprint@0.2.1` / `cli-calctool@0.1.1`),使用者只需:
|
|
83
83
|
```bash
|
|
84
84
|
npx cli-blueprint@latest install # 装 blueprint + calctool 两个 skill
|
|
85
85
|
npx cli-calctool@latest install # 同样内容(calctool 命名入口)
|
package/install.mjs
CHANGED
|
@@ -431,6 +431,8 @@ if (cmd === 'list') {
|
|
|
431
431
|
node install.mjs check
|
|
432
432
|
node install.mjs uninstall
|
|
433
433
|
node install.mjs list
|
|
434
|
-
node install.mjs ides
|
|
434
|
+
node install.mjs ides
|
|
435
|
+
|
|
436
|
+
npm 安装后(npx cli-blueprint@latest / npx cli-calctool@latest)用法相同。`)
|
|
435
437
|
process.exit(1)
|
|
436
438
|
}
|