refactor(dev-infra): create ng-dev executable locally in the repo (#39089)

Rather than running ng-dev via ts-node, going forward ng-dev is generated and run
locally via node.  Additionally, the generated file is tested on each commit to
ensure that the local generated version stays up to date.

PR Close #39089
This commit is contained in:
Joey Perrott
2020-10-01 16:06:56 -07:00
committed by Alex Rickabaugh
parent d939b5f598
commit d331e09b71
35 changed files with 6869 additions and 79 deletions
-4
View File
@@ -21,7 +21,3 @@ export function buildCommitMessageParser(localYargs: yargs.Argv) {
.command(ValidateFileModule)
.command(ValidateRangeModule);
}
if (require.main == module) {
buildCommitMessageParser(yargs).parse();
}