Eric
Eric
@jgraichen @nsunga I've published a new version of this plugin that adds `rawRequest` to the asset info available during `customize()`. It is not currently available on all assets. Example: ```js...
@nskazki If you have reproducible issues with my plugin (`webpack-assets-manifest`), please report the issue and I'll take a look.
@dependabot rebase
I'm having the same issue with `node_modules` missing in the zip artifact. In my case, I'm using `format: 'esm'` and `platform: 'node'`. I've debugged this and found the issue (for...
@josemigallas Have you tried the [customize hook](https://github.com/webdeveric/webpack-assets-manifest?tab=readme-ov-file#customize)?
@josemigallas You could try the [`transform()`](https://github.com/webdeveric/webpack-assets-manifest?tab=readme-ov-file#transform) hook. It allows you to modify everything that goes into the output JSON file. The return value from that hook gets written to the...
@james-wallis The `sortManifest` behavior has not changed between [v5](https://github.com/webdeveric/webpack-assets-manifest/blob/57efc86f5aa5bd3e77581e40191f9289191351d2/src/WebpackAssetsManifest.js#L149) and [v6](https://github.com/webdeveric/webpack-assets-manifest/blob/52c5977ef8c20813f4d862ea3f53877f4737dea1/src/plugin.ts#L210). It defaults to `true`, not the `localeCompare()` example provided. Do you have a minimal reproducible example I can clone...