Update supported platforms

- Drop support for Node.js v4
- Add support for Node.js v10
- Drop support for IE < 11
master
Futago-za Ryuu 6 years ago
parent 4089aac71e
commit 3cedf4439d

@ -7,7 +7,7 @@
{ {
"modules": false, "modules": false,
"targets": { "targets": {
"ie": 9 "ie": 11
} }
} }
] ]

@ -2,7 +2,7 @@
module.exports = { module.exports = {
"extends": "futagozaryuu/node-v4", "extends": "futagozaryuu/node-v6",
"root": true, "root": true,
"rules": { "rules": {

@ -3,9 +3,9 @@ sudo: false
language: node_js language: node_js
node_js: node_js:
- "4"
- "6" - "6"
- "8" - "8"
- "10"
after_success: after_success:
- yarn coverage - yarn coverage

@ -2,9 +2,9 @@
Both the parser generator and generated parsers should run well in the following environments: Both the parser generator and generated parsers should run well in the following environments:
* Node.js 4+ * Node.js v6+
* Internet Explorer 9+ * Internet Explorer 11
* Edge * Microsoft Edge
* Firefox * Firefox
* Chrome * Chrome
* Safari * Safari

@ -65,6 +65,6 @@
"vinyl-source-stream": "2.0.0" "vinyl-source-stream": "2.0.0"
}, },
"engines": { "engines": {
"node": ">=4" "node": ">= 6"
} }
} }

Loading…
Cancel
Save