Update checked-in dependencies
This commit is contained in:
parent
4fad06f438
commit
40a500c743
4168 changed files with 298222 additions and 374905 deletions
5
node_modules/yargs/browser.d.ts
generated
vendored
Normal file
5
node_modules/yargs/browser.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
import {YargsFactory} from './build/lib/yargs-factory';
|
||||
|
||||
declare const Yargs: ReturnType<typeof YargsFactory>;
|
||||
|
||||
export default Yargs;
|
||||
2
node_modules/yargs/build/index.cjs
generated
vendored
2
node_modules/yargs/build/index.cjs
generated
vendored
File diff suppressed because one or more lines are too long
2
node_modules/yargs/build/lib/command.js
generated
vendored
2
node_modules/yargs/build/lib/command.js
generated
vendored
|
|
@ -131,6 +131,7 @@ export class CommandInstance {
|
|||
const builder = commandHandler.builder;
|
||||
let innerYargs = yargs;
|
||||
if (isCommandBuilderCallback(builder)) {
|
||||
yargs.getInternalMethods().getUsageInstance().freeze();
|
||||
const builderOutput = builder(yargs.getInternalMethods().reset(aliases), helpOrVersionSet);
|
||||
if (isPromise(builderOutput)) {
|
||||
return builderOutput.then(output => {
|
||||
|
|
@ -140,6 +141,7 @@ export class CommandInstance {
|
|||
}
|
||||
}
|
||||
else if (isCommandBuilderOptionDefinitions(builder)) {
|
||||
yargs.getInternalMethods().getUsageInstance().freeze();
|
||||
innerYargs = yargs.getInternalMethods().reset(aliases);
|
||||
Object.keys(commandHandler.builder).forEach(key => {
|
||||
innerYargs.option(key, builder[key]);
|
||||
|
|
|
|||
31
node_modules/yargs/build/lib/completion.js
generated
vendored
31
node_modules/yargs/build/lib/completion.js
generated
vendored
|
|
@ -71,9 +71,7 @@ export class Completion {
|
|||
if (!isPositionalKey &&
|
||||
!options.hiddenOptions.includes(key) &&
|
||||
!this.argsContainKey(args, key, negable)) {
|
||||
this.completeOptionKey(key, completions, current);
|
||||
if (negable && !!options.default[key])
|
||||
this.completeOptionKey(`no-${key}`, completions, current);
|
||||
this.completeOptionKey(key, completions, current, negable && !!options.default[key]);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
|
@ -153,18 +151,27 @@ export class Completion {
|
|||
}
|
||||
return false;
|
||||
}
|
||||
completeOptionKey(key, completions, current) {
|
||||
const descs = this.usage.getDescriptions();
|
||||
completeOptionKey(key, completions, current, negable) {
|
||||
var _a, _b, _c, _d;
|
||||
let keyWithDesc = key;
|
||||
if (this.zshShell) {
|
||||
const descs = this.usage.getDescriptions();
|
||||
const aliasKey = (_b = (_a = this === null || this === void 0 ? void 0 : this.aliases) === null || _a === void 0 ? void 0 : _a[key]) === null || _b === void 0 ? void 0 : _b.find(alias => {
|
||||
const desc = descs[alias];
|
||||
return typeof desc === 'string' && desc.length > 0;
|
||||
});
|
||||
const descFromAlias = aliasKey ? descs[aliasKey] : undefined;
|
||||
const desc = (_d = (_c = descs[key]) !== null && _c !== void 0 ? _c : descFromAlias) !== null && _d !== void 0 ? _d : '';
|
||||
keyWithDesc = `${key.replace(/:/g, '\\:')}:${desc
|
||||
.replace('__yargsString__:', '')
|
||||
.replace(/(\r\n|\n|\r)/gm, ' ')}`;
|
||||
}
|
||||
const startsByTwoDashes = (s) => /^--/.test(s);
|
||||
const isShortOption = (s) => /^[^0-9]$/.test(s);
|
||||
const dashes = !startsByTwoDashes(current) && isShortOption(key) ? '-' : '--';
|
||||
if (!this.zshShell) {
|
||||
completions.push(dashes + key);
|
||||
}
|
||||
else {
|
||||
const desc = descs[key] || '';
|
||||
completions.push(dashes +
|
||||
`${key.replace(/:/g, '\\:')}:${desc.replace('__yargsString__:', '')}`);
|
||||
completions.push(dashes + keyWithDesc);
|
||||
if (negable) {
|
||||
completions.push(dashes + 'no-' + keyWithDesc);
|
||||
}
|
||||
}
|
||||
customCompletion(args, argv, current, done) {
|
||||
|
|
|
|||
4
node_modules/yargs/build/lib/usage.js
generated
vendored
4
node_modules/yargs/build/lib/usage.js
generated
vendored
|
|
@ -346,7 +346,9 @@ export function usage(yargs, shim) {
|
|||
padding: [0, 2, 0, 2 + getIndentation(kswitch)],
|
||||
width: maxWidth(switches, theWrap) + 4,
|
||||
}, desc);
|
||||
if (extra)
|
||||
const shouldHideOptionExtras = yargs.getInternalMethods().getUsageConfiguration()['hide-types'] ===
|
||||
true;
|
||||
if (extra && !shouldHideOptionExtras)
|
||||
ui.div({ text: extra, padding: [0, 0, 0, 2], align: 'right' });
|
||||
else
|
||||
ui.div();
|
||||
|
|
|
|||
15
node_modules/yargs/build/lib/yargs-factory.js
generated
vendored
15
node_modules/yargs/build/lib/yargs-factory.js
generated
vendored
|
|
@ -9,7 +9,7 @@ var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (
|
|||
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
|
||||
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
|
||||
};
|
||||
var _YargsInstance_command, _YargsInstance_cwd, _YargsInstance_context, _YargsInstance_completion, _YargsInstance_completionCommand, _YargsInstance_defaultShowHiddenOpt, _YargsInstance_exitError, _YargsInstance_detectLocale, _YargsInstance_emittedWarnings, _YargsInstance_exitProcess, _YargsInstance_frozens, _YargsInstance_globalMiddleware, _YargsInstance_groups, _YargsInstance_hasOutput, _YargsInstance_helpOpt, _YargsInstance_isGlobalContext, _YargsInstance_logger, _YargsInstance_output, _YargsInstance_options, _YargsInstance_parentRequire, _YargsInstance_parserConfig, _YargsInstance_parseFn, _YargsInstance_parseContext, _YargsInstance_pkgs, _YargsInstance_preservedGroups, _YargsInstance_processArgs, _YargsInstance_recommendCommands, _YargsInstance_shim, _YargsInstance_strict, _YargsInstance_strictCommands, _YargsInstance_strictOptions, _YargsInstance_usage, _YargsInstance_versionOpt, _YargsInstance_validation;
|
||||
var _YargsInstance_command, _YargsInstance_cwd, _YargsInstance_context, _YargsInstance_completion, _YargsInstance_completionCommand, _YargsInstance_defaultShowHiddenOpt, _YargsInstance_exitError, _YargsInstance_detectLocale, _YargsInstance_emittedWarnings, _YargsInstance_exitProcess, _YargsInstance_frozens, _YargsInstance_globalMiddleware, _YargsInstance_groups, _YargsInstance_hasOutput, _YargsInstance_helpOpt, _YargsInstance_isGlobalContext, _YargsInstance_logger, _YargsInstance_output, _YargsInstance_options, _YargsInstance_parentRequire, _YargsInstance_parserConfig, _YargsInstance_parseFn, _YargsInstance_parseContext, _YargsInstance_pkgs, _YargsInstance_preservedGroups, _YargsInstance_processArgs, _YargsInstance_recommendCommands, _YargsInstance_shim, _YargsInstance_strict, _YargsInstance_strictCommands, _YargsInstance_strictOptions, _YargsInstance_usage, _YargsInstance_usageConfig, _YargsInstance_versionOpt, _YargsInstance_validation;
|
||||
import { command as Command, } from './command.js';
|
||||
import { assertNotStrictEqual, assertSingleKey, objectKeys, } from './typings/common-types.js';
|
||||
import { YError } from './yerror.js';
|
||||
|
|
@ -44,6 +44,7 @@ const kEmitWarning = Symbol('emitWarning');
|
|||
const kFreeze = Symbol('freeze');
|
||||
const kGetDollarZero = Symbol('getDollarZero');
|
||||
const kGetParserConfiguration = Symbol('getParserConfiguration');
|
||||
const kGetUsageConfiguration = Symbol('getUsageConfiguration');
|
||||
const kGuessLocale = Symbol('guessLocale');
|
||||
const kGuessVersion = Symbol('guessVersion');
|
||||
const kParsePositionalNumbers = Symbol('parsePositionalNumbers');
|
||||
|
|
@ -108,6 +109,7 @@ export class YargsInstance {
|
|||
_YargsInstance_strictCommands.set(this, false);
|
||||
_YargsInstance_strictOptions.set(this, false);
|
||||
_YargsInstance_usage.set(this, void 0);
|
||||
_YargsInstance_usageConfig.set(this, {});
|
||||
_YargsInstance_versionOpt.set(this, null);
|
||||
_YargsInstance_validation.set(this, void 0);
|
||||
__classPrivateFieldSet(this, _YargsInstance_shim, shim, "f");
|
||||
|
|
@ -924,6 +926,11 @@ export class YargsInstance {
|
|||
return this;
|
||||
}
|
||||
}
|
||||
usageConfiguration(config) {
|
||||
argsert('<object>', [config], arguments.length);
|
||||
__classPrivateFieldSet(this, _YargsInstance_usageConfig, config, "f");
|
||||
return this;
|
||||
}
|
||||
version(opt, msg, ver) {
|
||||
const defaultVersionOpt = 'version';
|
||||
argsert('[boolean|string] [string] [string]', [opt, msg, ver], arguments.length);
|
||||
|
|
@ -959,7 +966,7 @@ export class YargsInstance {
|
|||
__classPrivateFieldGet(this, _YargsInstance_usage, "f").wrap(cols);
|
||||
return this;
|
||||
}
|
||||
[(_YargsInstance_command = new WeakMap(), _YargsInstance_cwd = new WeakMap(), _YargsInstance_context = new WeakMap(), _YargsInstance_completion = new WeakMap(), _YargsInstance_completionCommand = new WeakMap(), _YargsInstance_defaultShowHiddenOpt = new WeakMap(), _YargsInstance_exitError = new WeakMap(), _YargsInstance_detectLocale = new WeakMap(), _YargsInstance_emittedWarnings = new WeakMap(), _YargsInstance_exitProcess = new WeakMap(), _YargsInstance_frozens = new WeakMap(), _YargsInstance_globalMiddleware = new WeakMap(), _YargsInstance_groups = new WeakMap(), _YargsInstance_hasOutput = new WeakMap(), _YargsInstance_helpOpt = new WeakMap(), _YargsInstance_isGlobalContext = new WeakMap(), _YargsInstance_logger = new WeakMap(), _YargsInstance_output = new WeakMap(), _YargsInstance_options = new WeakMap(), _YargsInstance_parentRequire = new WeakMap(), _YargsInstance_parserConfig = new WeakMap(), _YargsInstance_parseFn = new WeakMap(), _YargsInstance_parseContext = new WeakMap(), _YargsInstance_pkgs = new WeakMap(), _YargsInstance_preservedGroups = new WeakMap(), _YargsInstance_processArgs = new WeakMap(), _YargsInstance_recommendCommands = new WeakMap(), _YargsInstance_shim = new WeakMap(), _YargsInstance_strict = new WeakMap(), _YargsInstance_strictCommands = new WeakMap(), _YargsInstance_strictOptions = new WeakMap(), _YargsInstance_usage = new WeakMap(), _YargsInstance_versionOpt = new WeakMap(), _YargsInstance_validation = new WeakMap(), kCopyDoubleDash)](argv) {
|
||||
[(_YargsInstance_command = new WeakMap(), _YargsInstance_cwd = new WeakMap(), _YargsInstance_context = new WeakMap(), _YargsInstance_completion = new WeakMap(), _YargsInstance_completionCommand = new WeakMap(), _YargsInstance_defaultShowHiddenOpt = new WeakMap(), _YargsInstance_exitError = new WeakMap(), _YargsInstance_detectLocale = new WeakMap(), _YargsInstance_emittedWarnings = new WeakMap(), _YargsInstance_exitProcess = new WeakMap(), _YargsInstance_frozens = new WeakMap(), _YargsInstance_globalMiddleware = new WeakMap(), _YargsInstance_groups = new WeakMap(), _YargsInstance_hasOutput = new WeakMap(), _YargsInstance_helpOpt = new WeakMap(), _YargsInstance_isGlobalContext = new WeakMap(), _YargsInstance_logger = new WeakMap(), _YargsInstance_output = new WeakMap(), _YargsInstance_options = new WeakMap(), _YargsInstance_parentRequire = new WeakMap(), _YargsInstance_parserConfig = new WeakMap(), _YargsInstance_parseFn = new WeakMap(), _YargsInstance_parseContext = new WeakMap(), _YargsInstance_pkgs = new WeakMap(), _YargsInstance_preservedGroups = new WeakMap(), _YargsInstance_processArgs = new WeakMap(), _YargsInstance_recommendCommands = new WeakMap(), _YargsInstance_shim = new WeakMap(), _YargsInstance_strict = new WeakMap(), _YargsInstance_strictCommands = new WeakMap(), _YargsInstance_strictOptions = new WeakMap(), _YargsInstance_usage = new WeakMap(), _YargsInstance_usageConfig = new WeakMap(), _YargsInstance_versionOpt = new WeakMap(), _YargsInstance_validation = new WeakMap(), kCopyDoubleDash)](argv) {
|
||||
if (!argv._ || !argv['--'])
|
||||
return argv;
|
||||
argv._.push.apply(argv._, argv['--']);
|
||||
|
|
@ -1059,6 +1066,9 @@ export class YargsInstance {
|
|||
[kGetParserConfiguration]() {
|
||||
return __classPrivateFieldGet(this, _YargsInstance_parserConfig, "f");
|
||||
}
|
||||
[kGetUsageConfiguration]() {
|
||||
return __classPrivateFieldGet(this, _YargsInstance_usageConfig, "f");
|
||||
}
|
||||
[kGuessLocale]() {
|
||||
if (!__classPrivateFieldGet(this, _YargsInstance_detectLocale, "f"))
|
||||
return;
|
||||
|
|
@ -1190,6 +1200,7 @@ export class YargsInstance {
|
|||
getLoggerInstance: this[kGetLoggerInstance].bind(this),
|
||||
getParseContext: this[kGetParseContext].bind(this),
|
||||
getParserConfiguration: this[kGetParserConfiguration].bind(this),
|
||||
getUsageConfiguration: this[kGetUsageConfiguration].bind(this),
|
||||
getUsageInstance: this[kGetUsageInstance].bind(this),
|
||||
getValidationInstance: this[kGetValidationInstance].bind(this),
|
||||
hasParseCallback: this[kHasParseCallback].bind(this),
|
||||
|
|
|
|||
4
node_modules/yargs/locales/en.json
generated
vendored
4
node_modules/yargs/locales/en.json
generated
vendored
|
|
@ -33,6 +33,10 @@
|
|||
"one": "Unknown argument: %s",
|
||||
"other": "Unknown arguments: %s"
|
||||
},
|
||||
"Unknown command: %s": {
|
||||
"one": "Unknown command: %s",
|
||||
"other": "Unknown commands: %s"
|
||||
},
|
||||
"Invalid values:": "Invalid values:",
|
||||
"Argument: %s, Given: %s, Choices: %s": "Argument: %s, Given: %s, Choices: %s",
|
||||
"Argument check failed: %s": "Argument check failed: %s",
|
||||
|
|
|
|||
2
node_modules/yargs/package.json
generated
vendored
2
node_modules/yargs/package.json
generated
vendored
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "yargs",
|
||||
"version": "17.6.2",
|
||||
"version": "17.7.2",
|
||||
"description": "yargs the modern, pirate-themed, successor to optimist.",
|
||||
"main": "./index.cjs",
|
||||
"exports": {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue