Skip to content

Commit 5b4cb0d

Browse files
committed
Build: Stop testing on Node.js 0.10
Node.js 0.10 loses upstream support today (see https://github.com/nodejs/LTS/) so let's stop testing against it as well.
1 parent fedc1aa commit 5b4cb0d

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
language: node_js
22
sudo: false
33
node_js:
4-
- "0.10"
54
- "0.12"
65
- "4"
76
- "6"

Gruntfile.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ module.exports = function( grunt ) {
1717
oldNode = /^v0\./.test( process.version );
1818

1919
// Support: Node.js <4
20-
// Skip running tasks that dropped support for Node.js 0.10 & 0.12
21-
// in those Node versions.
20+
// Skip running tasks that dropped support for Node.js 0.12
21+
// in this Node version.
2222
function runIfNewNode( task ) {
2323
return oldNode ? "print_old_node_message:" + task : task;
2424
}

0 commit comments

Comments
 (0)