Repro
const { task, logger, option, argv } = require('just-task');
option('name', {describe: 'user name or something'});
task('blimey', 'An exclamation of surprise.', function() {
logger.info(`blimey! ${argv().name}`);
});
Actual behaviour
Basically --help output always invokes yargs default help command.


Expected behaviour
just blimey --help
Options:
--name user name or something [string]
--help Show help [boolean]
--version Show version number [boolean]
Repro
Actual behaviour
Basically
--helpoutput always invokes yargs default help command.Expected behaviour