Skip to content

Commit 99e0bdc

Browse files
committed
build: disable checkSchematicsAngularLatestVersion pre-release check
This is current checking `packages/schematics/angular/utility/latest-versions/package.json` but recently we change how the version is set angular#29368
1 parent 00ed363 commit 99e0bdc

File tree

1 file changed

+2
-1
lines changed
  • scripts/release-checks/dependency-ranges

1 file changed

+2
-1
lines changed

scripts/release-checks/dependency-ranges/index.mts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ export async function assertValidDependencyRanges(
3333

3434
const failures: string[] = [
3535
...(await checkPeerDependencies(newVersion, allPackages)),
36-
...(await checkSchematicsAngularLatestVersion(newVersion)),
36+
// TODO: re-enable the below once the checks are performaned against the stamped version .js file instead of the src json file.
37+
// ...(await checkSchematicsAngularLatestVersion(newVersion)),
3738
];
3839

3940
if (failures.length !== 0) {

0 commit comments

Comments
 (0)