Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions constants.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
3 changes: 2 additions & 1 deletion scripts/release-checks/dependency-ranges/index.mts
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down