<!-- Please make sure you have read the submission guidelines before posting an PR --> <!-- https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md#-submitting-a-pr --> <!-- Please make sure that your commit message follows our format --> <!-- Example: `fix(nx): must begin with lowercase` --> <!-- If this is a particularly complex change or feature addition, you can request a dedicated Nx release for this pull request branch. Mention someone from the Nx team or the `@nrwl/nx-pipelines-reviewers` and they will confirm if the PR warrants its own release for testing purposes, and generate it for you if appropriate. --> ## Current Behavior <!-- This is the behavior we have today --> The `withVerbose` util is only used in a few places. ## Expected Behavior <!-- This is the behavior we should expect with the changes in this PR --> The `withVerbose` util is used throughout and also contains middleware to default to the value in `process.env.NX_VERBOSE_LOGGING === 'true'` ## Related Issue(s) <!-- Please link the issue being fixed so it gets closed when this is merged. --> Fixes #
46 lines
1.4 KiB
TypeScript
46 lines
1.4 KiB
TypeScript
import { CommandModule } from 'yargs';
|
|
import { linkToNxDevAndExamples } from '../yargs-utils/documentation';
|
|
import { withVerbose } from '../yargs-utils/shared-options';
|
|
import { handleErrors } from '../../utils/params';
|
|
|
|
export const yargsImportCommand: CommandModule = {
|
|
command: 'import [sourceRemoteUrl] [destination]',
|
|
describe: false,
|
|
builder: (yargs) =>
|
|
linkToNxDevAndExamples(
|
|
withVerbose(
|
|
yargs
|
|
.positional('sourceRemoteUrl', {
|
|
type: 'string',
|
|
description: 'The remote URL of the source to import',
|
|
})
|
|
.positional('destination', {
|
|
type: 'string',
|
|
description:
|
|
'The directory in the current workspace to import into',
|
|
})
|
|
.option('source', {
|
|
type: 'string',
|
|
description:
|
|
'The directory in the source repository to import from',
|
|
})
|
|
.option('ref', {
|
|
type: 'string',
|
|
description: 'The branch from the source repository to import',
|
|
})
|
|
.option('interactive', {
|
|
type: 'boolean',
|
|
description: 'Interactive mode',
|
|
default: true,
|
|
})
|
|
),
|
|
'import'
|
|
),
|
|
handler: async (args) => {
|
|
const exitCode = await handleErrors(args.verbose as boolean, async () => {
|
|
return (await import('./import')).importHandler(args as any);
|
|
});
|
|
process.exit(exitCode);
|
|
},
|
|
};
|