https://github.com/angular/angular
Revision f3eb7d9ecb9a82e7396cca658e3250e47c853153 authored by Andrew Scott on 27 April 2022, 18:53:30 UTC, committed by Dylan Hunn on 27 April 2022, 20:05:33 UTC
In order to survive closure minification correctly, static properties need to
be annotated with @nocollapse.

For more history, see https://github.com/angular/angular/pull/28050

PR Close #45783
1 parent b9a07d6
Raw File
Tip revision: f3eb7d9ecb9a82e7396cca658e3250e47c853153 authored by Andrew Scott on 27 April 2022, 18:53:30 UTC
fix(core): Ensure the `StandaloneService` is retained after closure minification (#45783)
Tip revision: f3eb7d9
.editorconfig
# https://editorconfig.org

root = true

[*]
charset = utf-8
indent_style = space
indent_size = 2
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true

[*.md]
insert_final_newline = false
trim_trailing_whitespace = false
back to top