Joey Perrott 4afad03312 feat(dev-infra): add ng-dev build-and-link command (#42319)
Add a command to build the release output without stamping for release
and link via `yarn link` the generated builds to a project provided.

PR Close #42319
2021-05-25 22:11:03 +00:00

16 lines
479 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 {BuildAndLinkCommandModule} from './build-and-link/cli';
/** Build the parser for the misc commands. */
export function buildMiscParser(localYargs: yargs.Argv) {
return localYargs.help().strict().command(BuildAndLinkCommandModule);
}