ci: use dev-infra cli from local sources (#36326)

Use dev-infra cli from local sources rather than loading
from @angular/dev-infra-private builds.

PR Close #36326
This commit is contained in:
Joey Perrott 2020-03-30 10:33:37 -07:00 committed by Kara Erickson
parent 43006bcc45
commit 24a92472bf
5 changed files with 15 additions and 8 deletions

View File

@ -280,7 +280,7 @@ jobs:
- run: yarn lint --branch $CI_GIT_BASE_REVISION
- run: yarn ts-circular-deps:check
- run: yarn -s ng-dev pullapprove:verify
- run: yarn -s ng-dev pullapprove verify
test:
executor:

View File

@ -11,8 +11,9 @@ import {validateFile} from './validate-file';
/** Build the parser for the commit-message commands. */
export function buildCommitMessageParser(localYargs: yargs.Argv) {
return localYargs.help().strict().command(
'pre-commit-validate', 'Validate the most recent commit message', {},
() => { validateFile('.git/COMMIT_EDITMSG'); });
'pre-commit-validate', 'Validate the most recent commit message', {}, () => {
validateFile('.git/COMMIT_EDITMSG');
});
}
if (require.main == module) {

11
dev-infra/ng-dev Executable file
View File

@ -0,0 +1,11 @@
#!/usr/bin/env ts-node
/**
* @license
* Copyright Google Inc. 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
*/
// Loads the ng-dev cli, automatically executing it.
require('./cli.ts');

View File

@ -148,7 +148,6 @@
"// 2": "devDependencies are not used under Bazel. Many can be removed after test.sh is deleted.",
"devDependencies": {
"@angular/cli": "9.0.3",
"@angular/dev-infra-private": "angular/dev-infra-private-builds#3724a71",
"@bazel/bazelisk": "^1.3.0",
"@bazel/buildifier": "^0.29.0",
"@bazel/ibazel": "^0.12.3",

View File

@ -153,10 +153,6 @@
universal-analytics "^0.4.20"
uuid "^3.3.2"
"@angular/dev-infra-private@angular/dev-infra-private-builds#3724a71":
version "0.0.0"
resolved "https://codeload.github.com/angular/dev-infra-private-builds/tar.gz/3724a71047361d85f4131d990f00a5aecdbc3ddc"
"@babel/code-frame@^7.0.0":
version "7.0.0"
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0.tgz#06e2ab19bdb535385559aabb5ba59729482800f8"