mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
a4d3fadd31
To assist in tracking credit usage on CircleCI, this tooling allows for checking the burn rate of credit usage in a repository.
16 lines
449 B
TypeScript
16 lines
449 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 {BurnRateModule} from './burn-rate/cli';
|
|
|
|
/** Build the parser for the ci commands. */
|
|
export function buildCiParster(localYargs: yargs.Argv) {
|
|
return localYargs.help().strict().command(BurnRateModule);
|
|
}
|