File tree 2 files changed +2
-1
lines changed
tests/legacy-cli/e2e/utils
2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ RELEASE_ENGINES_YARN = ">= 1.13.0"
6
6
SNAPSHOT_REPOS = {
7
7
"@angular/cli" : "angular/cli-builds" ,
8
8
"@angular/pwa" : "angular/angular-pwa-builds" ,
9
+ "@angular/build" : "angular/angular-build-builds" ,
9
10
"@angular/ssr" : "angular/angular-ssr-builds" ,
10
11
"@angular-devkit/architect" : "angular/angular-devkit-architect-builds" ,
11
12
"@angular-devkit/architect-cli" : "angular/angular-devkit-architect-cli-builds" ,
Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ export async function useSha(): Promise<void> {
102
102
. filter ( ( name ) => name . startsWith ( '@angular/' ) )
103
103
. forEach ( ( name ) => {
104
104
const pkgName = name . split ( / \/ / ) [ 1 ] ;
105
- if ( pkgName === 'cli' || pkgName === 'ssr' ) {
105
+ if ( pkgName === 'cli' || pkgName === 'ssr' || pkgName === 'build' ) {
106
106
return ;
107
107
}
108
108
You can’t perform that action at this time.
0 commit comments