@agile-team/robot-cli 1.1.9 → 1.1.12
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 +438 -438
- package/bin/index.js +404 -396
- package/lib/create.js +1200 -1145
- package/lib/download.js +204 -204
- package/lib/templates.js +352 -352
- package/lib/utils.js +333 -333
- package/package.json +6 -5
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agile-team/robot-cli",
|
|
3
|
-
"version": "1.1.
|
|
4
|
-
"description": "🤖 现代化项目脚手架工具,支持多技术栈快速创建项目 -
|
|
3
|
+
"version": "1.1.12",
|
|
4
|
+
"description": "🤖 现代化项目脚手架工具,支持多技术栈快速创建项目 - 优先 bun,兼容 npm/pnpm/yarn",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"robot": "bin/index.js"
|
|
@@ -18,7 +18,8 @@
|
|
|
18
18
|
"dev:create": "node bin/index.js create",
|
|
19
19
|
"dev:list": "node bin/index.js list",
|
|
20
20
|
"dev:search": "node bin/index.js search",
|
|
21
|
-
"install:deps": "bun install
|
|
21
|
+
"install:deps": "bun install",
|
|
22
|
+
"install:fallback": "npm install",
|
|
22
23
|
"clean:modules": "rm -rf node_modules",
|
|
23
24
|
"reinstall": "npm run clean:modules && npm run install:deps",
|
|
24
25
|
"prepublishOnly": "npm run test",
|
|
@@ -57,8 +58,8 @@
|
|
|
57
58
|
"electron",
|
|
58
59
|
"project-generator",
|
|
59
60
|
"boilerplate",
|
|
60
|
-
"
|
|
61
|
-
"
|
|
61
|
+
"bun-first",
|
|
62
|
+
"package-manager-smart",
|
|
62
63
|
"cheny"
|
|
63
64
|
],
|
|
64
65
|
"engines": {
|