Skip to content

Commit fd56c61

Browse files
committed
chore: Dropped support of Node.js 4
Some NPM dependencies dropped support of Node.js 4. It is easier to drop it too, that looking for workarounds to get the testing build running, or claim the support without actually testing it. Add testing with Node.js 10. BREAKING CHANGE: Dropped support of Node.js 4
1 parent f06b02c commit fd56c61

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ cache:
66
notifications:
77
email: false
88
node_js:
9+
- '10'
910
- '8'
1011
- '6'
11-
- '4'
1212
after_success:
1313
- npm run travis-deploy-once "npm run semantic-release"
1414
branches:

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ In lieu of a formal styleguide, take care to maintain the existing coding style.
6161

6262
## Release History
6363

64+
* 2018-04-27 v3.0.0 Dropped support of Node.js 4
6465
* 2018-03-05 v2.2.0 Allow generating page titles from file names without directory
6566
* 2018-03-04 v2.1.0 Add filtering and accessibility to the reports
6667
* 2018-03-01 v2.0.0 Change the HTML format to look like Koa11y reports

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
}
2424
],
2525
"engines": {
26-
"node": ">= 4"
26+
"node": ">= 6"
2727
},
2828
"main": "index.js",
2929
"scripts": {
@@ -37,10 +37,10 @@
3737
"object.values": "^1.0.4"
3838
},
3939
"devDependencies": {
40-
"semantic-release": "^12.4.1",
41-
"standard": "^11.0.0",
42-
"tap": "^11.1.1",
43-
"travis-deploy-once": "^4.3.4"
40+
"semantic-release": "^15.1.7",
41+
"standard": "^11.0.1",
42+
"tap": "^11.1.4",
43+
"travis-deploy-once": "^4.4.1"
4444
},
4545
"keywords": [
4646
"grunt-tasks",

0 commit comments

Comments
 (0)