You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
events.js:198
domain.enter();
^
TypeError: domain.enter is not a function
at Command.emit (events.js:198:12)
at Command.parseOptions (/home/tomasz/dev/hardbox-cli/node_modules/commander/index.js:719:14)
at Command.parse (/home/tomasz/dev/hardbox-cli/node_modules/commander/index.js:454:21)
at Object.<anonymous> (/home/tomasz/dev/hardbox-cli/bug.js:13:10)
at Module._compile (module.js:573:30)
at Object.Module._extensions..js (module.js:584:10)
at Module.load (module.js:507:32)
at tryModuleLoad (module.js:470:12)
at Function.Module._load (module.js:462:3)
at Function.Module.runMain (module.js:609:10)
It seems to only happen when i use '--domain'. Anything else I tried works fine (ex: '--domain1')
It does look like an upstream bug, but I want to double check.
The text was updated successfully, but these errors were encountered:
Unfortunately, currently commander doesn't support properties/methods of Node.js' EventEmitter, plus those which it defines itself as an option/command. It's known issue and is misimplementation from the early ages of commander.
Node:
v8.4.0
When I run the following code (bug.js):
with the following command:
node bug.js -n test -r https -p 8080 -d "sdsd" -t "12312"
I get this:
It seems to only happen when i use '--domain'. Anything else I tried works fine (ex: '--domain1')
It does look like an upstream bug, but I want to double check.
The text was updated successfully, but these errors were encountered: