Skip to content

Commit bac536d

Browse files
committed
Drop support for node 4 & 5, node < 6 is EOL'd and no longer maintained.
1 parent fdfeed3 commit bac536d

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

.travis.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,6 @@ matrix:
99
env: INTEGRATION=true
1010
- node_js: '6'
1111
env: INTEGRATION=false
12-
- node_js: '5'
13-
env: INTEGRATION=false
14-
- node_js: '4'
15-
env: INTEGRATION=false
1612
install:
1713
- npm install -g npm@latest
1814
- npm ci

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ This release has **BREAKING CHANGES** that were required to fix regressions in 4
88
* Named Combinators (E.g. `.a /for/ .b`) are now properly parsed as a combinator.
99
* 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.
1010
* Several bug fixes that caused the parser to hang and run out of memory when a `/` was encountered have been fixed.
11+
* The minimum supported version of Node is now v6.0.
1112

1213
### Changes to the Descendent Combinator
1314

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
},
4848
"license": "MIT",
4949
"engines": {
50-
"node": ">=4"
50+
"node": ">=6"
5151
},
5252
"homepage": "https://github.com/postcss/postcss-selector-parser",
5353
"contributors": [

0 commit comments

Comments
 (0)