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
2 changes: 1 addition & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ bazel_dep(name = "yq.bzl", version = "0.3.5")
bazel_dep(name = "rules_angular")
git_override(
module_name = "rules_angular",
commit = "804515937593ca742f5f119a20774f55a08e70ad",
commit = "2d6de06a64f559d115ea019923561690484677cc",
remote = "https://github.com/angular/rules_angular.git",
)

Expand Down
18 changes: 8 additions & 10 deletions MODULE.bazel.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions adev/shared-docs/utils/analytics.utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,6 @@ export const setCookieConsent = (state: 'denied' | 'granted'): void => {
}
}
};

// This fixes the RollupError: Exported variable "global" is not defined.
export {};
2 changes: 1 addition & 1 deletion packages/service-worker/worker/src/driver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ export class Driver implements Debuggable, UpdateSource {
event.waitUntil(this.handlePushSubscriptionChange(event));
}

private onMessageError(event: ExtendableMessageEvent): void {
private onMessageError(event: MessageEvent<unknown>): void {
Copy link
Contributor Author

@alan-agius4 alan-agius4 Mar 13, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The type here was incorrect for TS 6.0 the error is also shown in the IDE but was not surfaced before due to an issue with rules_angular workers which didn't use the workspace TS version.

FYI: @josephperrott

// Handle message deserialization errors that occur when receiving messages
// that cannot be deserialized, typically due to corrupted data or unsupported formats.
this.debugger.log(
Expand Down
Loading