Skip to content

Commit

Permalink
fix(bazel): app bundle rule does not declare other files as side-effe…
Browse files Browse the repository at this point in the history
…ct free

Fixes a typo that prevented non-entry-point files from being marked
as side-effect free.
  • Loading branch information
devversion committed Dec 12, 2022
1 parent e03e8fe commit 7246a9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bazel/app-bundling/esbuild.config-tmpl.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export default {
plugins: [
await createEsbuildAngularOptimizePlugin({
optimize: {
isFileSideEffectFree: isFileSideEffectFree,
isSideEffectFree: isFileSideEffectFree,
},
downlevelAsyncGeneratorsIfPresent: true,
enableLinker: {
Expand Down

0 comments on commit 7246a9c

Please sign in to comment.