npm-link-up
Version:
Use this package to link your projects together for local development.
37 lines (36 loc) • 901 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = [
{
names: ['help', 'h'],
type: 'bool',
help: 'Print help info for `nlu init`, and exit 0.'
},
{
names: ['verbosity', 'v'],
type: 'positiveInteger',
help: 'Verbosity level is an integer between 1 and 4, inclusive.',
default: 2,
env: 'nlu_verbosity_level'
},
{
names: ['debug', 'd'],
type: 'bool',
help: 'Show debug logging.',
default: false,
hidden: true
},
{
names: ['allow-unknown'],
type: 'bool',
help: 'Allow unknown/unrecognized options at the command line.',
default: false,
hidden: true
},
{
names: ['force', 'f'],
type: 'bool',
help: 'Force execution at hand.',
default: false
}
];