shellscape / webpack-manifest-plugin

webpack plugin for generating asset manifests
MIT License
1.43k stars 186 forks source link

Manifest file does not show compressed files #296

Closed JosephBrooksbank closed 1 year ago

JosephBrooksbank commented 1 year ago

Expected Behavior

Using compression-webpack-plugin with webpack-manifest-plugin should include the compressed files generated by compression-webpack-plugin in the manifest.json file

{
  "input.js": "input.js",
  "input.js.gz": "input.js.gz"
}

Actual Behavior

Files generated by compression-webpack-plugin are not included in the manifest.json file

{
  "input.js": "input.js"
}

Additional Information

I've tried using useLegacyEmit: true, which doesn't help. It was working on webpack v4 WITH legacyEmit.

stale[bot] commented 1 year ago

Hey folks. This issue hasn't received any traction for 60 days, so we're going to close this for housekeeping. If this is still an ongoing issue, please do consider contributing a Pull Request to resolve it. Further discussion is always welcome even with the issue closed. If anything actionable is posted in the comments, we'll consider reopening it.