Skip to content

Commit 1ac6396

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 8ecb03e commit 1ac6396

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
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
@@ -198,6 +198,7 @@ your code using Grunt.
198198

199199
## Release History
200200

201+
* 2018-04-27 v3.0.0 Dropped support of Node.js 4
201202
* 2018-03-05 v2.2.0 Upgrade to the reporter v2.2.0, allow generating
202203
page titles from file names without directory
203204
* 2018-03-04 v2.1.0 Upgrade to the reporter v2.1.0

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,23 +23,23 @@
2323
}
2424
],
2525
"engines": {
26-
"node": ">= 4"
26+
"node": ">= 6"
2727
},
2828
"scripts": {
2929
"test": "grunt",
3030
"semantic-release": "semantic-release",
3131
"travis-deploy-once": "travis-deploy-once"
3232
},
3333
"dependencies": {
34-
"chalk": "^2.3.2",
35-
"grunt-html-html-reporter": "^2.2.0"
34+
"chalk": "^2.4.1",
35+
"grunt-html-html-reporter": "^3.0.0"
3636
},
3737
"devDependencies": {
3838
"grunt": "^1.0.2",
3939
"grunt-contrib-clean": "^1.1.0",
4040
"grunt-contrib-nodeunit": "^1.0.0",
4141
"grunt-standard": "^3.1.0",
42-
"semantic-release": "^15.1.5",
42+
"semantic-release": "^15.1.7",
4343
"travis-deploy-once": "^4.4.1"
4444
},
4545
"peerDependencies": {

0 commit comments

Comments
 (0)