-
Notifications
You must be signed in to change notification settings - Fork 12k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(@angular-devkit/build-angular): generate different content hashes…
… for scripts which are changed during the optimization phase Instead of generating the content hash based on the content of scripts BEFORE the optimization phase, the content hash is generated AFTER the optimization phase. Prevents caching issues where browsers block execution of scripts due to the integrity hash not matching with the cached script in case of a script being optimized differently than in a previous build, where it would previously result in the same content hash. Fixes #22906 (cherry picked from commit 357c45e)
- Loading branch information
1 parent
10f2449
commit 4d848c4
Showing
2 changed files
with
74 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
45 changes: 45 additions & 0 deletions
45
tests/legacy-cli/e2e/tests/build/scripts-output-hashing.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
import { expectFileMatchToExist, expectFileToMatch, writeMultipleFiles } from '../../utils/fs'; | ||
import { ng } from '../../utils/process'; | ||
import { updateJsonFile, updateTsConfig } from '../../utils/project'; | ||
|
||
function getScriptsFilename(): Promise<string> { | ||
return expectFileMatchToExist('dist/test-project/', /external-module\.[0-9a-f]{16}\.js/); | ||
} | ||
|
||
export default async function () { | ||
// verify content hash is based on code after optimizations | ||
await writeMultipleFiles({ | ||
'src/script.js': 'try { console.log(); } catch {}', | ||
}); | ||
await updateJsonFile('angular.json', (configJson) => { | ||
const build = configJson.projects['test-project'].architect.build; | ||
build.options['scripts'] = [ | ||
{ | ||
input: 'src/script.js', | ||
inject: true, | ||
bundleName: 'external-module', | ||
}, | ||
]; | ||
build.configurations['production'].outputHashing = 'all'; | ||
configJson['cli'] = { cache: { enabled: 'false' } }; | ||
}); | ||
await updateTsConfig((json) => { | ||
json['compilerOptions']['target'] = 'es2017'; | ||
json['compilerOptions']['module'] = 'es2020'; | ||
}); | ||
await ng('build', '--configuration=production'); | ||
const filenameBuild1 = await getScriptsFilename(); | ||
await expectFileToMatch(`dist/test-project/${filenameBuild1}`, 'try{console.log()}catch(c){}'); | ||
|
||
await updateTsConfig((json) => { | ||
json['compilerOptions']['target'] = 'es2019'; | ||
}); | ||
await ng('build', '--configuration=production'); | ||
const filenameBuild2 = await getScriptsFilename(); | ||
await expectFileToMatch(`dist/test-project/${filenameBuild2}`, 'try{console.log()}catch{}'); | ||
if (filenameBuild1 === filenameBuild2) { | ||
throw new Error( | ||
'Contents of the built file changed between builds, but the content hash stayed the same!', | ||
); | ||
} | ||
} |