2020-04-20 17:44:25 -04:00
|
|
|
/**
|
|
|
|
* @license
|
2020-05-19 15:08:49 -04:00
|
|
|
* Copyright Google LLC All Rights Reserved.
|
2020-04-20 17:44:25 -04: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
|
|
|
|
*/
|
|
|
|
import * as yargs from 'yargs';
|
2020-09-09 08:53:13 -04:00
|
|
|
|
2020-09-09 08:55:19 -04:00
|
|
|
import {ReleaseBuildCommandModule} from './build/cli';
|
2020-09-09 09:01:18 -04:00
|
|
|
import {ReleasePublishCommandModule} from './publish/cli';
|
2020-09-09 08:56:58 -04:00
|
|
|
import {ReleaseSetDistTagCommand} from './set-dist-tag/cli';
|
2020-12-11 15:34:44 -05:00
|
|
|
import {BuildEnvStampCommand} from './stamping/cli';
|
2020-04-20 17:44:25 -04:00
|
|
|
|
|
|
|
/** Build the parser for the release commands. */
|
|
|
|
export function buildReleaseParser(localYargs: yargs.Argv) {
|
2020-09-09 08:53:13 -04:00
|
|
|
return localYargs.help()
|
|
|
|
.strict()
|
|
|
|
.demandCommand()
|
2020-09-09 09:01:18 -04:00
|
|
|
.command(ReleasePublishCommandModule)
|
2020-09-09 08:55:19 -04:00
|
|
|
.command(ReleaseBuildCommandModule)
|
2020-09-09 08:56:58 -04:00
|
|
|
.command(ReleaseSetDistTagCommand)
|
2020-12-11 15:34:44 -05:00
|
|
|
.command(BuildEnvStampCommand);
|
2020-04-20 17:44:25 -04:00
|
|
|
}
|