Skip to content

Commit

Permalink
Fix old integrity hashes being added to the entrypoints.json with --w…
Browse files Browse the repository at this point in the history
…atch
  • Loading branch information
Lyrkan committed Jul 10, 2019
1 parent 9a3cb43 commit 1986d97
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/plugins/entry-files-manifest.js
Expand Up @@ -28,8 +28,10 @@ function processOutput(webpackConfig) {
// the original assets (so, assets.entrypoints) + the new
// assets (which will have their original structure). We
// delete the entrypoints key, and then process the new assets
// like normal below
// like normal below. The same reasoning applies for the
// integrity key.
delete assets.entrypoints;
delete assets.integrity;

// This will iterate over all the entry points and convert the
// one file entries into an array of one entry since that was how the entry point file was before this change.
Expand Down

0 comments on commit 1986d97

Please sign in to comment.