Skip to content

Commit

Permalink
Drop support for < Node 6
Browse files Browse the repository at this point in the history
dependencies of newer penthouse require ES2015 syntax support.
Not updating this makes the build fail.

Users on older versions could always use an older version of the plugin anyway,
as they can't use newer penthouse versions.
  • Loading branch information
fatso83 committed Mar 21, 2018
1 parent 2cd3ecc commit a63099c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
language: node_js
node_js:
- "0.12"
- "4"
- "5"
- "6"
- "7"
- "8"
- "9"
before_install:
- npm install -g grunt-cli
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
}
],
"engines": {
"node": ">= 0.12.0"
"node": ">= 6.0"
},
"dependencies": {
"penthouse": "~1.4.0"
Expand Down

0 comments on commit a63099c

Please sign in to comment.