Skip to content

Commit

Permalink
fix: Drop support for node < 6.11.5 and webpack < 4
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Ensure you are using node 6.11.5 or newer and webpack 4
  • Loading branch information
danez committed Feb 14, 2019
1 parent 5836231 commit 36aba57
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
language: node_js
sudo: false
node_js:
- "11"
- "8"
- "6"
env:
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@
"url": "https://github.com/webpack-contrib/grunt-webpack/issues"
},
"engines": {
"node": ">=4"
"node": ">=6.11.5"
},
"files": [
"src",
"tasks"
],
"peerDependencies": {
"webpack": "^2.0.0 || ^3.0.0 || ^4.0.0"
"webpack": "^4.0.0"
},
"license": "MIT",
"keywords": [
Expand Down

0 comments on commit 36aba57

Please sign in to comment.