When building the environment stamp, support two modes: release and snapshot The release mode will always stamp using the current version of in the root package.json and in snapshot mode will use a version stamp expressing a version based on the tag and the number of commits from the tag. PR Close #40095
		
			
				
	
	
		
			25 lines
		
	
	
		
			808 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			808 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
/**
 | 
						|
 * @license
 | 
						|
 * Copyright Google LLC All Rights Reserved.
 | 
						|
 *
 | 
						|
 * 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';
 | 
						|
 | 
						|
import {ReleaseBuildCommandModule} from './build/cli';
 | 
						|
import {ReleasePublishCommandModule} from './publish/cli';
 | 
						|
import {ReleaseSetDistTagCommand} from './set-dist-tag/cli';
 | 
						|
import {BuildEnvStampCommand} from './stamping/cli';
 | 
						|
 | 
						|
/** Build the parser for the release commands. */
 | 
						|
export function buildReleaseParser(localYargs: yargs.Argv) {
 | 
						|
  return localYargs.help()
 | 
						|
      .strict()
 | 
						|
      .demandCommand()
 | 
						|
      .command(ReleasePublishCommandModule)
 | 
						|
      .command(ReleaseBuildCommandModule)
 | 
						|
      .command(ReleaseSetDistTagCommand)
 | 
						|
      .command(BuildEnvStampCommand);
 | 
						|
}
 |