npm-link-up
Version:
Use this package to link your projects together for local development.
59 lines (58 loc) • 1.48 kB
JavaScript
'use strict';
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = [
{
names: ['help', 'h'],
type: 'bool',
help: 'Print help menu for npm-link-up, and exit 0.'
},
{
names: ['verbosity', 'v'],
type: 'positiveInteger',
help: 'Verbosity level is an integer between 1 and 4, inclusive.',
default: 3,
env: 'nlu_verbosity_level'
},
{
names: ['config', 'conf', 'c'],
type: 'string',
help: 'Path to an .nlu.json file.',
default: '',
env: 'nlu_config_path'
},
{
names: ['force'],
type: 'bool',
help: 'Force execution at hand.',
default: false,
env: 'nlu_setting_force'
},
{
names: ['global', 'g'],
type: 'bool',
help: 'Tells NLU to make changes to global config, not the local config.',
default: false,
env: 'nlu_setting_global'
},
{
names: ['json'],
type: 'bool',
help: 'Use JSON for command line output.',
default: false,
env: 'nlu_setting_json'
},
{
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
}
];