Skip to content

Commit 1bbdbaf

Browse files
alan-agius4filipesilva
authored andcommitted
build: change angular packages local version to 0.0.0
The integration tests run in the framework repo use `0.0.0` as version and not a previously stated `0.0.0-PLACEHOLDER`
1 parent 873da86 commit 1bbdbaf

File tree

1 file changed

+2
-2
lines changed
  • packages/angular_devkit/build_angular/src/utils

1 file changed

+2
-2
lines changed

packages/angular_devkit/build_angular/src/utils/version.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@ export function assertCompatibleAngularVersion(projectRoot: string, logger: logg
4949
return;
5050
}
5151

52-
if (angularCliPkgJson['version'] === '0.0.0' || angularPkgJson['version'] === '0.0.0-PLACEHOLDER') {
52+
if (angularCliPkgJson['version'] === '0.0.0' || angularPkgJson['version'] === '0.0.0') {
5353
// Internal CLI testing version or integration testing in the angular/angular
54-
// repository with the generated development @angular/core npm package which is versioned "0.0.0-PLACEHOLDER".
54+
// repository with the generated development @angular/core npm package which is versioned "0.0.0".
5555
return;
5656
}
5757

0 commit comments

Comments
 (0)