@zhennann/common-bin 2.9.2 → 2.9.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.
Files changed (2) hide show
  1. package/lib/command.js +4 -4
  2. package/package.json +1 -1
package/lib/command.js CHANGED
@@ -13,9 +13,9 @@ const changeCase = require('change-case');
13
13
  const chalk = require('chalk');
14
14
 
15
15
  const DISPATCH = Symbol.for('eb:Command#dispatch');
16
- const PARSE = Symbol('Command#parse');
17
- const COMMANDS = Symbol('Command#commands');
18
- const VERSION = Symbol('Command#version');
16
+ const PARSE = Symbol.for('eb:Command#parse');
17
+ const COMMANDS = Symbol.for('eb:Command#commands');
18
+ const VERSION = Symbol.for('eb:Command#version');
19
19
 
20
20
  class CommonBin {
21
21
  constructor(rawArgv) {
@@ -210,7 +210,7 @@ class CommonBin {
210
210
  .completion()
211
211
  .help()
212
212
  .version()
213
- .wrap(120)
213
+ .wrap(80)
214
214
  .alias('h', 'help')
215
215
  .alias('v', 'version')
216
216
  .group([ 'help', 'version' ], 'Global Options:');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zhennann/common-bin",
3
- "version": "2.9.2",
3
+ "version": "2.9.5",
4
4
  "description": "Abstraction bin tool",
5
5
  "main": "index.js",
6
6
  "dependencies": {