Skip to content

Commit

Permalink
Drop support for node 4 & 5, node < 6 is EOL'd and no longer maintained.
Browse files Browse the repository at this point in the history
  • Loading branch information
chriseppstein committed May 4, 2018
1 parent fdfeed3 commit bac536d
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
4 changes: 0 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,6 @@ matrix:
env: INTEGRATION=true
- node_js: '6'
env: INTEGRATION=false
- node_js: '5'
env: INTEGRATION=false
- node_js: '4'
env: INTEGRATION=false
install:
- npm install -g npm@latest
- npm ci
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ This release has **BREAKING CHANGES** that were required to fix regressions in 4
* Named Combinators (E.g. `.a /for/ .b`) are now properly parsed as a combinator.
* It is now possible to look up a node based on the source location of a character in that node and to query nodes if they contain some character.
* Several bug fixes that caused the parser to hang and run out of memory when a `/` was encountered have been fixed.
* The minimum supported version of Node is now v6.0.

### Changes to the Descendent Combinator

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
},
"license": "MIT",
"engines": {
"node": ">=4"
"node": ">=6"
},
"homepage": "https://github.com/postcss/postcss-selector-parser",
"contributors": [
Expand Down

0 comments on commit bac536d

Please sign in to comment.