cloudcc-cli 1.5.8 → 1.5.9
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 +8 -1
- package/bin/cc.js +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
package/bin/cc.js
CHANGED
|
@@ -6,7 +6,7 @@ let argvs = process.argv.splice(2);
|
|
|
6
6
|
let action = argvs[0]
|
|
7
7
|
if (!action) {
|
|
8
8
|
console.log()
|
|
9
|
-
console.log(chalk.yellow("请查看帮助文档:https://
|
|
9
|
+
console.log(chalk.yellow("请查看帮助文档:https://cloudccone.feishu.cn/wiki/Q2AgwlxAtijmMJkjXXZcYgQVnmw?fromScene=spaceOverview"));
|
|
10
10
|
console.log()
|
|
11
11
|
return;
|
|
12
12
|
}
|
|
@@ -15,7 +15,7 @@ if (!action) {
|
|
|
15
15
|
let type = argvs[1]
|
|
16
16
|
if (!type) {
|
|
17
17
|
console.log()
|
|
18
|
-
console.log(chalk.yellow("请查看帮助文档:https://
|
|
18
|
+
console.log(chalk.yellow("请查看帮助文档:https://cloudccone.feishu.cn/wiki/Q2AgwlxAtijmMJkjXXZcYgQVnmw?fromScene=spaceOverview"));
|
|
19
19
|
console.log()
|
|
20
20
|
return;
|
|
21
21
|
}
|
|
@@ -24,7 +24,7 @@ if (!type) {
|
|
|
24
24
|
let name = argvs[2]
|
|
25
25
|
if (!name) {
|
|
26
26
|
console.log()
|
|
27
|
-
console.log(chalk.yellow("请查看帮助文档:https://
|
|
27
|
+
console.log(chalk.yellow("请查看帮助文档:https://cloudccone.feishu.cn/wiki/Q2AgwlxAtijmMJkjXXZcYgQVnmw?fromScene=spaceOverview"));
|
|
28
28
|
console.log()
|
|
29
29
|
return;
|
|
30
30
|
}
|
|
@@ -45,6 +45,6 @@ try {
|
|
|
45
45
|
cc[type](action, name);
|
|
46
46
|
} catch (e) {
|
|
47
47
|
console.log()
|
|
48
|
-
console.log(chalk.yellow("请查看帮助文档:https://
|
|
48
|
+
console.log(chalk.yellow("请查看帮助文档:https://cloudccone.feishu.cn/wiki/Q2AgwlxAtijmMJkjXXZcYgQVnmw?fromScene=spaceOverview"), e);
|
|
49
49
|
console.log()
|
|
50
50
|
}
|