You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When optimization.concatenateModules is set to true in Rspack, the webpack-license-plugin generates an empty license file instead of outputting the licenses of dependencies. However, it works correctly with Webpack using the exact same configuration.
When optimization.concatenateModules is set to false, the webpack-license-plugin generates the correct JSON with Rspack just as it does with Webpack. However, this results in an increase in the script bundle size.
The text was updated successfully, but these errors were encountered:
System Info
Details
When
optimization.concatenateModules
is set totrue
in Rspack, the webpack-license-plugin generates an empty license file instead of outputting the licenses of dependencies. However, it works correctly with Webpack using the exact same configuration.Reproduce link
https://github.com/Robot-Inventor/rspack-webpack-license-plugin
Reproduce Steps
pnpm run build
webpack-license-plugin
correctly generates./webpack-dist/oss-licenses.json
. However, with Rspack, it generates an empty JSON file at./rspack-dist/oss-licenses.json
.optimization.concatenateModules
is set tofalse
, thewebpack-license-plugin
generates the correct JSON with Rspack just as it does with Webpack. However, this results in an increase in the script bundle size.The text was updated successfully, but these errors were encountered: