Skip to content

Commit 0f58252

Browse files
authored
build: fix snapshot jobs by not updating @angular/bazel (#26357)
Angular Bazel has switched to no longer generate devmode outputs but instead be ESM only. These changes are not yet released, and also they rely on `ts_library` being patched. Until our components setup works with it, we cannot update `@angular/bazel`.
1 parent 77f0a77 commit 0f58252

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

scripts/circleci/setup-angular-snapshots.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@ const ignorePackages = [
3333
// tests for the actual snapshot Angular framework code.
3434
'@angular/build-tooling',
3535
'@angular/ng-dev',
36+
// TODO(ESM-MIGRATION): Angular Bazel no longer generates dev-mode and relies on `ts_library`
37+
// being patched. Until our setup is compatible with it, we do not update `@angular/bazel`.
38+
'@angular/bazel',
3639
];
3740

3841
const {writeFileSync} = require('fs');

0 commit comments

Comments
 (0)