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
Use Node 16 (and therefore npm 8 where peerDependencies are always installed)
Create a package.json with both higlass and a package requiring webpack 5
Due to unminified-webpack-plugin: ^2.0.0, it will always install webpack 4 on the root level of node_modules
Observed behavior
With node_modules/webpack being of version 4, it breaks some scripts which rely on it being on version 5.
Expected behavior
It should not at all install unminified-webpack-plugin as dependency, but probably devDependency?
Here, unminified-webpack-plugin is tagged to version ^2.0.0. One could either upgrade to ^3.0.0 (which is webpack 5 only), or move it to devDependencies. Is there a reason why it is included in dependencies instead?
The text was updated successfully, but these errors were encountered:
Steps to reproduce
unminified-webpack-plugin: ^2.0.0
, it will always install webpack 4 on the root level ofnode_modules
Observed behavior
Expected behavior
unminified-webpack-plugin
as dependency, but probably devDependency?Here,
unminified-webpack-plugin
is tagged to version^2.0.0
. One could either upgrade to^3.0.0
(which is webpack 5 only), or move it to devDependencies. Is there a reason why it is included in dependencies instead?The text was updated successfully, but these errors were encountered: