We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 249f9dc commit 2431ab4Copy full SHA for 2431ab4
packages/angular/build/src/utils/version.ts
@@ -38,8 +38,8 @@ export function assertCompatibleAngularVersion(projectRoot: string): void | neve
38
}
39
40
const supportedAngularSemver = '0.0.0-ANGULAR-FW-PEER-DEP';
41
- if (supportedAngularSemver.startsWith('0.0.0')) {
42
- // Internal CLI testing version.
+ if (angularPkgJson['version'] === '0.0.0' || supportedAngularSemver.startsWith('0.0.0')) {
+ // Internal CLI and FW testing version.
43
return;
44
45
0 commit comments