2020-03-17 07:58:17 -04:00
|
|
|
#!/usr/bin/env node
|
2020-03-04 12:42:45 -05:00
|
|
|
/**
|
|
|
|
* @license
|
2020-05-19 15:08:49 -04:00
|
|
|
* Copyright Google LLC All Rights Reserved.
|
2020-03-04 12:42:45 -05:00
|
|
|
*
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
*/
|
2020-03-26 13:45:09 -04:00
|
|
|
import * as yargs from 'yargs';
|
|
|
|
import {tsCircularDependenciesBuilder} from './ts-circular-dependencies/index';
|
|
|
|
import {buildPullapproveParser} from './pullapprove/cli';
|
|
|
|
import {buildCommitMessageParser} from './commit-message/cli';
|
2020-04-20 16:00:10 -04:00
|
|
|
import {buildFormatParser} from './format/cli';
|
2020-04-20 17:44:25 -04:00
|
|
|
import {buildReleaseParser} from './release/cli';
|
2020-05-05 18:37:31 -04:00
|
|
|
import {buildPrParser} from './pr/cli';
|
2020-03-04 17:37:21 -05:00
|
|
|
|
2020-03-26 13:45:09 -04:00
|
|
|
yargs.scriptName('ng-dev')
|
|
|
|
.demandCommand()
|
|
|
|
.recommendCommands()
|
|
|
|
.command('commit-message <command>', '', buildCommitMessageParser)
|
2020-04-20 16:00:10 -04:00
|
|
|
.command('format <command>', '', buildFormatParser)
|
2020-05-05 18:37:31 -04:00
|
|
|
.command('pr <command>', '', buildPrParser)
|
2020-04-20 17:44:25 -04:00
|
|
|
.command('pullapprove <command>', '', buildPullapproveParser)
|
|
|
|
.command('release <command>', '', buildReleaseParser)
|
|
|
|
.command('ts-circular-deps <command>', '', tsCircularDependenciesBuilder)
|
2020-03-26 13:45:09 -04:00
|
|
|
.wrap(120)
|
|
|
|
.strict()
|
|
|
|
.parse();
|