Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ import { Chunk, Compilation, Compiler, sources as webpackSources } from 'webpack

const Entrypoint = require('webpack/lib/Entrypoint');

/**
* The name of the plugin provided to Webpack when tapping Webpack compiler hooks.
*/
const PLUGIN_NAME = 'scripts-webpack-plugin';

export interface ScriptsWebpackPluginOptions {
name: string;
sourceMap?: boolean;
Expand Down Expand Up @@ -97,8 +102,8 @@ export class ScriptsWebpackPlugin {
.filter((script) => !!script)
.map((script) => path.resolve(this.options.basePath || '', script));

compiler.hooks.thisCompilation.tap('scripts-webpack-plugin', (compilation) => {
compilation.hooks.additionalAssets.tapPromise('scripts-webpack-plugin', async () => {
compiler.hooks.thisCompilation.tap(PLUGIN_NAME, (compilation) => {
compilation.hooks.additionalAssets.tapPromise(PLUGIN_NAME, async () => {
if (await this.shouldSkip(compilation, scripts)) {
if (this._cachedOutput) {
this._insertOutput(compilation, this._cachedOutput, true);
Expand Down Expand Up @@ -149,19 +154,32 @@ export class ScriptsWebpackPlugin {
});

const combinedSource = new webpackSources.CachedSource(concatSource);
const filename = interpolateName(
{ resourcePath: 'scripts.js' },
this.options.filename as string,
{
content: combinedSource.source(),
},
);

const output = { filename, source: combinedSource };

const output = { filename: this.options.filename, source: combinedSource };
this._insertOutput(compilation, output);
this._cachedOutput = output;
addDependencies(compilation, scripts);
});
compilation.hooks.processAssets.tapPromise(
{
name: PLUGIN_NAME,
stage: compiler.webpack.Compilation.PROCESS_ASSETS_STAGE_DEV_TOOLING,
},
async () => {
const assetName = this.options.filename;
const asset = compilation.getAsset(assetName);
if (asset) {
const interpolatedFilename = interpolateName(
{ resourcePath: 'scripts.js' },
assetName,
{ content: asset.source.source() },
);
if (assetName !== interpolatedFilename) {
compilation.renameAsset(assetName, interpolatedFilename);
}
}
},
);
});
}
}
45 changes: 45 additions & 0 deletions tests/legacy-cli/e2e/tests/build/scripts-output-hashing.ts
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!',
);
}
}