Which @angular/* package(s) are the source of the bug?
angular_devkit/build_angular
Is this a regression?
Yes
Description
I just upgraded a pretty big private project from v12 to v13 and the build time increased x10, can't really find why.
Just to be sure that it was Angular upgrade I tried to downgrade again and the performance restored as expected.
I post here a part of the verbose log of the build, in particular note the extreme difference between v12 and v13 in assets time / seal compilation:
v12 (edit)
...
<t> record hash: 0.12885 ms
<t> module assets: 0.478536 ms
<t> create chunk assets: 6.774782 ms
<t> process assets: 30310.76689 ms <--------
LOG from webpack.Compiler
<t> make hook: 18985.143228 ms
<t> finish make hook: 0.206746 ms
<t> finish compilation: 72.86418 ms
<t> seal compilation: 32318.405325 ms <----------
<t> afterCompile hook: 0.280398 ms
...
v13
...
<t> record hash: 0.130436 ms
<t> module assets: 0.797611 ms
<t> create chunk assets: 6.450294 ms
<t> process assets: 302297.57658 ms <-----------
LOG from webpack.Compiler
<t> make hook: 21553.025473 ms
<t> finish make hook: 0.179688 ms
<t> finish compilation: 86.421 ms
<t> seal compilation: 304301.925952 ms <-----------
<t> afterCompile hook: 0.207707 ms
...
tsconfig.json:
/* To learn more about this file see: https://angular.io/config/tsconfig. */
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./",
"outDir": "./dist/out-tsc",
"forceConsistentCasingInFileNames": true,
//"strict": true,
"noImplicitOverride": true,
//"noPropertyAccessFromIndexSignature": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"sourceMap": true,
"declaration": false,
"downlevelIteration": true,
"experimentalDecorators": true,
"moduleResolution": "node",
"importHelpers": true,
"target": "es2017",
"module": "es2020",
"lib": [
"es2020",
"dom"
]
},
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false,
"strictInjectionParameters": true,
"strictInputAccessModifiers": true,
"strictTemplates": true
}
}
Any help to debug this issue deeply? What other tests could I do to find out more?
Thanks
Please provide a link to a minimal reproduction of the bug
https://github.com/angular/angular/issues/44555#issuecomment-1005045938
Please provide the exception or error you saw
Performance issue
Please provide the environment you discovered this bug in (run ng version)
Angular CLI: 13.1.2
Node: 16.13.1
Package Manager: npm 8.3.0
OS: linux x64
Angular: 13.1.1
... animations, common, compiler, compiler-cli, core, forms
... language-service, platform-browser, platform-browser-dynamic
... router
Package Version
---------------------------------------------------------
@angular-devkit/architect 0.1301.2
@angular-devkit/build-angular 13.1.2
@angular-devkit/core 13.1.2
@angular-devkit/schematics 13.1.2
@angular/cli 13.1.2
@schematics/angular 13.1.2
rxjs 7.4.0
typescript 4.5.4
Anything else?
The issue is not present on development build (-c development)
The issue is present in v13.0.0 too
Which @angular/* package(s) are the source of the bug?
angular_devkit/build_angular
Is this a regression?
Yes
Description
I just upgraded a pretty big private project from v12 to v13 and the build time increased x10, can't really find why.
Just to be sure that it was Angular upgrade I tried to downgrade again and the performance restored as expected.
I post here a part of the verbose log of the build, in particular note the extreme difference between v12 and v13 in assets time / seal compilation:
v12 (edit)
v13
tsconfig.json:
Any help to debug this issue deeply? What other tests could I do to find out more?
Thanks
Please provide a link to a minimal reproduction of the bug
https://github.com/angular/angular/issues/44555#issuecomment-1005045938
Please provide the exception or error you saw
Performance issue
Please provide the environment you discovered this bug in (run
ng version)Anything else?
The issue is not present on development build (
-c development)The issue is present in v13.0.0 too