馃殌 feature request
Description
Currently all the errors throwed by pipes are not being tree-shaked in production mode.
Relevant Package
@angular/common/(pipes)
Example:
|
if (typeof value !== 'string') { |
|
throw invalidPipeArgumentError(LowerCasePipe, value); |
|
} |
Describe the solution you'd like
I have seen that you made a lot of progress with ngDevMode, so I think it would be a case of using it for the purpose of making the package smaller.
馃殌 feature request
Description
Currently all the errors throwed by pipes are not being tree-shaked in production mode.
Relevant Package
@angular/common/(pipes)Example:
angular/packages/common/src/pipes/case_conversion_pipes.ts
Lines 37 to 39 in 884f743
Describe the solution you'd like
I have seen that you made a lot of progress with
ngDevMode, so I think it would be a case of using it for the purpose of making the package smaller.