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