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
+1 -1
View File
@@ -8,7 +8,7 @@
import {params, types} from 'typed-graphqlify';
import {GitClient} from './git';
import {GitClient} from './git/index';
/** Get a PR from github */
export async function getPr<PrSchema>(prSchema: PrSchema, prNumber: number, git: GitClient) {