@zhennann/common-bin 2.9.2 → 2.9.3

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 +3 -3
  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) {
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.3",
4
4
  "description": "Abstraction bin tool",
5
5
  "main": "index.js",
6
6
  "dependencies": {