mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-16 02:24:10 +08:00
build: correctly set @angular/build
version in snapshots
Currently this is not being set correctly. Ex: 2760127ec6/package.json (L10)
This commit is contained in:
parent
921fa7cf4a
commit
c3463bb40a
@ -6,6 +6,7 @@ RELEASE_ENGINES_YARN = ">= 1.13.0"
|
||||
SNAPSHOT_REPOS = {
|
||||
"@angular/cli": "angular/cli-builds",
|
||||
"@angular/pwa": "angular/angular-pwa-builds",
|
||||
"@angular/build": "angular/angular-build-builds",
|
||||
"@angular/ssr": "angular/angular-ssr-builds",
|
||||
"@angular-devkit/architect": "angular/angular-devkit-architect-builds",
|
||||
"@angular-devkit/architect-cli": "angular/angular-devkit-architect-cli-builds",
|
||||
|
@ -102,7 +102,7 @@ export async function useSha(): Promise<void> {
|
||||
.filter((name) => name.startsWith('@angular/'))
|
||||
.forEach((name) => {
|
||||
const pkgName = name.split(/\//)[1];
|
||||
if (pkgName === 'cli' || pkgName === 'ssr') {
|
||||
if (pkgName === 'cli' || pkgName === 'ssr' || pkgName === 'build') {
|
||||
return;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user