-
-
Notifications
You must be signed in to change notification settings - Fork 194
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(package): add webpack >= v4.0.0
(peerDependencies
)
#245
Conversation
webpack >= v4.0.0
(peerDependencies
)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why did package-lock.json
changed ?
test/helpers/compile.js
Outdated
@@ -10,6 +10,7 @@ function compile(fixture, moduleRules, resolveAlias = {}) { | |||
|
|||
webpack({ | |||
entry, | |||
mode: 'development', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please drop this as the test setup needs additional changes to work with webpack >= v4.0.0
(CommonChunksPlugin
removed etc etc) :) This will be taken care of by #233 separately
So the |
Thx |
Released in |
Adds webpack 4 as an allowed peer dependency
Had to fix the dev dependency of webpack to
^3.10.0
(matches uglify plugin) otherwise the tests would use latest and fail asmode
was not set in the config.