diff --git a/constants.bzl b/constants.bzl index c26a8f84eadf..5b4f12b2d42b 100644 --- a/constants.bzl +++ b/constants.bzl @@ -5,8 +5,8 @@ RELEASE_ENGINES_YARN = ">= 1.13.0" NG_PACKAGR_VERSION = "^19.2.0-next.0" ANGULAR_FW_VERSION = "^19.2.0-next.0" -ANGULAR_FW_PEER_DEP = "^19.2.0-next.0" -NG_PACKAGR_PEER_DEP = "^19.2.0-next.0" +ANGULAR_FW_PEER_DEP = "^19.0.0 || ^19.2.0-next.0" +NG_PACKAGR_PEER_DEP = "^19.0.0 || ^19.2.0-next.0" SNAPSHOT_REPOS = { "@angular/cli": "angular/cli-builds", diff --git a/scripts/release-checks/dependency-ranges/index.mts b/scripts/release-checks/dependency-ranges/index.mts index f504b219c6a9..85cba2de5de3 100644 --- a/scripts/release-checks/dependency-ranges/index.mts +++ b/scripts/release-checks/dependency-ranges/index.mts @@ -33,7 +33,8 @@ export async function assertValidDependencyRanges( const failures: string[] = [ ...(await checkPeerDependencies(newVersion, allPackages)), - ...(await checkSchematicsAngularLatestVersion(newVersion)), + // TODO: Re-enable the following once the checks are performed against the stamped `.js` file instead of the source `.json` file. + // ...(await checkSchematicsAngularLatestVersion(newVersion)), ]; if (failures.length !== 0) {