Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow any version of webpack as a peerDependency (#550)
Webpack 4 alpha has been released. In preparation for v4, it seems reasonable to change this to allow `>=2`. This should cut down on maintenance and avoid unnecessarily blocking folks from updating going forward.
- Loading branch information
40552b6
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.
it won't work like that:
error "babel-loader#webpack@>=2" doesn't satisfy found match of "[email protected]"
Should be something like:
"webpack": "2 || 3 || ^4.0.0-beta"