fix(core): remove unused quiet option from nx cli
This commit is contained in:
parent
217f581472
commit
8d24bb01a0
@ -208,8 +208,7 @@ export const commandsObject = yargs
|
|||||||
(await import('./connect-to-nx-cloud')).connectToNxCloudCommand()
|
(await import('./connect-to-nx-cloud')).connectToNxCloudCommand()
|
||||||
)
|
)
|
||||||
.help('help')
|
.help('help')
|
||||||
.version(nxVersion)
|
.version(nxVersion);
|
||||||
.option('quiet', { type: 'boolean', hidden: true });
|
|
||||||
|
|
||||||
function withFormatOptions(yargs: yargs.Argv): yargs.Argv {
|
function withFormatOptions(yargs: yargs.Argv): yargs.Argv {
|
||||||
return withAffectedOptions(yargs)
|
return withAffectedOptions(yargs)
|
||||||
|
|||||||
@ -21,7 +21,7 @@ const runOne = [
|
|||||||
'hide-cached-output',
|
'hide-cached-output',
|
||||||
];
|
];
|
||||||
|
|
||||||
const runMany = [...runOne, 'projects', 'quiet', 'all', 'verbose'];
|
const runMany = [...runOne, 'projects', 'all', 'verbose'];
|
||||||
|
|
||||||
const runAffected = [
|
const runAffected = [
|
||||||
...runOne,
|
...runOne,
|
||||||
@ -31,7 +31,6 @@ const runAffected = [
|
|||||||
'base',
|
'base',
|
||||||
'head',
|
'head',
|
||||||
'files',
|
'files',
|
||||||
'quiet',
|
|
||||||
'plain',
|
'plain',
|
||||||
'select',
|
'select',
|
||||||
'verbose',
|
'verbose',
|
||||||
@ -60,7 +59,6 @@ export interface NxArgs {
|
|||||||
verbose?: boolean;
|
verbose?: boolean;
|
||||||
help?: boolean;
|
help?: boolean;
|
||||||
version?: boolean;
|
version?: boolean;
|
||||||
quiet?: boolean;
|
|
||||||
plain?: boolean;
|
plain?: boolean;
|
||||||
withDeps?: boolean;
|
withDeps?: boolean;
|
||||||
'with-deps'?: boolean;
|
'with-deps'?: boolean;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user