Skip to content

Commit 1be3b07

Browse files
alan-agius4josephperrott
authored andcommitted
fix(@angular-devkit/build-angular): exclude outputPath from persistent build cache key
With this change we exclude `outputPath` from cache key due to i18n extraction which causes it to change on every build https://github.com/angular/angular-cli/blob/736a5f89deaca85f487b78aec9ff66d4118ceb6a/packages/angular_devkit/build_angular/src/utils/i18n-options.ts#L264-L265 Closes #21275
1 parent fe25ab1 commit 1be3b07

File tree

1 file changed

+8
-1
lines changed
  • packages/angular_devkit/build_angular/src/webpack/configs

1 file changed

+8
-1
lines changed

packages/angular_devkit/build_angular/src/webpack/configs/common.ts

+8-1
Original file line numberDiff line numberDiff line change
@@ -507,7 +507,14 @@ function getCacheSettings(
507507
.update(packageVersion)
508508
.update(wco.projectRoot)
509509
.update(JSON.stringify(wco.tsConfig))
510-
.update(JSON.stringify(wco.buildOptions))
510+
.update(
511+
JSON.stringify({
512+
...wco.buildOptions,
513+
// Needed because outputPath changes on every build when using i18n extraction
514+
// https://github.com/angular/angular-cli/blob/736a5f89deaca85f487b78aec9ff66d4118ceb6a/packages/angular_devkit/build_angular/src/utils/i18n-options.ts#L264-L265
515+
outputPath: undefined,
516+
}),
517+
)
511518
.update(supportedBrowsers.join(''))
512519
.digest('hex'),
513520
};

0 commit comments

Comments
 (0)