@agile-team/robot-cli 1.0.2 → 1.0.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.
- package/README.md +5 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
|
|
17
17
|
### 安装
|
|
18
18
|
```bash
|
|
19
|
-
npm install -g @
|
|
19
|
+
npm install -g @agile-team/robot-cli
|
|
20
20
|
```
|
|
21
21
|
|
|
22
22
|
### 创建项目
|
|
@@ -398,7 +398,7 @@ analytics.track('template_used', {
|
|
|
398
398
|
## 🔧 常见问题
|
|
399
399
|
|
|
400
400
|
**Q: 提示 "command not found"?**
|
|
401
|
-
A: 全局安装CLI:`npm install -g @
|
|
401
|
+
A: 全局安装CLI:`npm install -g @agile-team/robot-cli`
|
|
402
402
|
|
|
403
403
|
**Q: 模板下载失败?**
|
|
404
404
|
A: 检查网络连接,尝试清除缓存:`robot cache --clear`
|
|
@@ -413,7 +413,7 @@ A: 目前仅支持公开GitHub仓库
|
|
|
413
413
|
|
|
414
414
|
```bash
|
|
415
415
|
# 安装并创建项目
|
|
416
|
-
npm install -g @
|
|
416
|
+
npm install -g @agile-team/robot-cli
|
|
417
417
|
robot create my-awesome-project
|
|
418
418
|
|
|
419
419
|
# 启动开发服务器
|
|
@@ -431,7 +431,7 @@ MIT License
|
|
|
431
431
|
## 🔗 相关链接
|
|
432
432
|
|
|
433
433
|
- [GitHub仓库](https://github.com/ChenyCHENYU/robot-cli)
|
|
434
|
-
- [npm包](https://www.npmjs.com/package/@
|
|
434
|
+
- [npm包](https://www.npmjs.com/package/@agile-team/robot-cli)
|
|
435
435
|
- [问题反馈](https://github.com/ChenyCHENYU/robot-cli/issues)
|
|
436
436
|
|
|
437
437
|
---
|
|
@@ -439,5 +439,5 @@ MIT License
|
|
|
439
439
|
**让项目创建变得简单高效,专注于业务逻辑的实现!** 🚀
|
|
440
440
|
|
|
441
441
|
```bash
|
|
442
|
-
npx @
|
|
442
|
+
npx @agile-team/robot-cli create my-project
|
|
443
443
|
```
|