Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor(google-maps): tree-shake assertInitialized #30813

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

arturovt
Copy link
Contributor

@arturovt arturovt commented Apr 5, 2025

Prior to this commit, in production bundles, assertInitialized is an empty method (its body is guarded with ngDevMode) that is preserved on the class and always called. There's no reason to keep calling no-op methods in production. This also increases bundle size because the method itself is not tree-shaken.

In this commit, the assertion has been moved to a separate function, which can be dropped in production due to the ngDevMode guard.

The only downside I couldn't resolve is that assertion functions (asserts ...) can't be used in this setup, so I had to use the non-null assertion operator instead.

@arturovt arturovt requested a review from a team as a code owner April 5, 2025 22:01
@arturovt arturovt requested review from crisbeto and andrewseguin and removed request for a team April 5, 2025 22:01
Prior to this commit, in production bundles, `assertInitialized` is an empty method (its body is guarded with `ngDevMode`) that is preserved on the class and always called. There's no reason to keep calling no-op methods in production. This also increases bundle size because the method itself is not tree-shaken.

In this commit, the assertion has been moved to a separate function, which can be dropped in production due to the `ngDevMode` guard.

The only downside I couldn't resolve is that assertion functions (`asserts ...`) can't be used in this setup, so I had to use the non-null assertion operator instead.
@arturovt arturovt force-pushed the refactor/google-maps-tree-shake branch from 5bd21a9 to e609ae2 Compare April 5, 2025 23:27
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant