@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 CHANGED
@@ -2149,7 +2149,7 @@ var entry = [{
2149
2149
 
2150
2150
  var require$$6 = {
2151
2151
  name: "@tmsfe/tmskit",
2152
- version: "0.0.4",
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('tms <command> --help')} for detailed usage of given command.`);
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tmsfe/tmskit",
3
- "version": "0.0.4",
3
+ "version": "0.0.5",
4
4
  "description": "tmskit",
5
5
  "main": "main.js",
6
6
  "bin": {
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('tms <command> --help')} for detailed usage of given command.`);
27
+ log(` Run ${chalk.cyan(`${TMS_NAME} <command> --help`)} for detailed usage of given command.`);
28
28
  log();
29
29
  });
30
30