rl-rockcli 0.0.16 → 0.0.17
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/index.js +1 -1
- package/package.json +3 -2
package/index.js
CHANGED
|
@@ -39,7 +39,7 @@ function run() {
|
|
|
39
39
|
|
|
40
40
|
cli
|
|
41
41
|
.scriptName('rockcli')
|
|
42
|
-
.usage(LOGO + '\n\nUsage: $0 <command> [options]')
|
|
42
|
+
.usage(LOGO + '\n\nUsage: $0 <command> [options]\n\n快捷别名:rc (效果与 rockcli 相同)')
|
|
43
43
|
.command(sandboxCommand)
|
|
44
44
|
.demandCommand(1, '请提供一个有效的命令。使用 --help 查看可用命令。')
|
|
45
45
|
.strict()
|
package/package.json
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rl-rockcli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.17",
|
|
4
4
|
"description": "Open-source ROCK CLI - Sandbox and Log management tool",
|
|
5
5
|
"bin": {
|
|
6
|
-
"rockcli": "./index.js"
|
|
6
|
+
"rockcli": "./index.js",
|
|
7
|
+
"rc": "./index.js"
|
|
7
8
|
},
|
|
8
9
|
"main": "./index.js",
|
|
9
10
|
"files": [
|