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
|
|
|
|
|
|
|
import {buildEnvStamp} from './stamping/env-stamp';
|
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()
|
|
|
|
.command(
|
|
|
|
'build-env-stamp', 'Build the environment stamping information', {},
|
|
|
|
() => buildEnvStamp());
|
2020-04-20 17:44:25 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (require.main === module) {
|
|
|
|
buildReleaseParser(yargs).parse();
|
|
|
|
}
|