@tmsfe/tmskit 0.0.4 → 0.0.5
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/dist/index.cjs.js +2 -2
- package/package.json +1 -1
- package/src/index.js +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -2149,7 +2149,7 @@ var entry = [{
|
|
|
2149
2149
|
|
|
2150
2150
|
var require$$6 = {
|
|
2151
2151
|
name: "@tmsfe/tmskit",
|
|
2152
|
-
version: "0.0.
|
|
2152
|
+
version: "0.0.5",
|
|
2153
2153
|
description: "tmskit",
|
|
2154
2154
|
main: "main.js",
|
|
2155
2155
|
bin: {
|
|
@@ -2273,7 +2273,7 @@ commands.forEach(cmd => {
|
|
|
2273
2273
|
});
|
|
2274
2274
|
program.on('--help', () => {
|
|
2275
2275
|
log();
|
|
2276
|
-
log(` Run ${chalk.cyan(
|
|
2276
|
+
log(` Run ${chalk.cyan(`${TMS_NAME} <command> --help`)} for detailed usage of given command.`);
|
|
2277
2277
|
log();
|
|
2278
2278
|
}); // 捕获未注册的命令
|
|
2279
2279
|
|
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -24,7 +24,7 @@ commands.forEach((cmd) => {
|
|
|
24
24
|
|
|
25
25
|
program.on('--help', () => {
|
|
26
26
|
log();
|
|
27
|
-
log(` Run ${chalk.cyan(
|
|
27
|
+
log(` Run ${chalk.cyan(`${TMS_NAME} <command> --help`)} for detailed usage of given command.`);
|
|
28
28
|
log();
|
|
29
29
|
});
|
|
30
30
|
|