You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
perf(@angular/build): directly check code for Angular partial linking
To more completely avoid having to load any Angular compiler linking code
when analyzing for code transformations during a build, the declaration
function checks are now performed directly. This is in contrast to the
previous behavior that required importing the linker code to use a helper
function included in the `@angular/compiler-cli` package. Avoiding the
need to load and parse a potentially large amount of code to perform the
check can improve performance for the cases where no linking is required.
To ensure the check stays up to date and while the list of function names
rarely changes, the linker must always use the existing function name
prefix (`ɵɵngDeclare`) for any declaration functions.
0 commit comments