Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 11 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
sudo: false

language: node_js

node_js:
- "0.8"
- "0.10"
- "0.11"
before_install:
- '[ "${TRAVIS_NODE_VERSION}" != "0.8" ] || npm install -g [email protected]'
- npm install -g npm@latest
- "4"
- "5"

install:
- npm install -g grunt-cli
- npm install

matrix:
fast_finish: true
10 changes: 3 additions & 7 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -215,13 +215,9 @@ module.exports = function(grunt) {
}
});

// These plugins provide necessary tasks.
grunt.loadNpmTasks("grunt-contrib-clean");
grunt.loadNpmTasks("grunt-contrib-concat");
grunt.loadNpmTasks("grunt-contrib-copy");
grunt.loadNpmTasks("grunt-contrib-jshint");
grunt.loadNpmTasks("grunt-contrib-watch");
grunt.loadNpmTasks("grunt-include-replace");
// Load any grunt plugins found in package.json.
require("load-grunt-tasks")(grunt, {scope: "devDependencies"});
require("time-grunt")(grunt);

// Load custom tasks
grunt.loadTasks("tasks");
Expand Down
8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,16 +31,18 @@
},
"devDependencies": {
"grunt": "~0.4.5",
"grunt-contrib-clean": "~0.6.0",
"grunt-contrib-clean": "~0.7.0",
"grunt-contrib-concat": "~0.5.1",
"grunt-contrib-copy": "~0.8.0",
"grunt-contrib-jshint": "~0.11.0",
"grunt-contrib-watch": "~0.6.1",
"grunt-include-replace": "~3.0.0",
"grunt-include-replace": "~3.2.0",
"load-grunt-tasks": "~3.4.0",
"time-grunt": "~1.3.0",
"yuitest": "~0.7.9"
},
"engines": {
"node": ">=0.8.0"
"node": ">=0.10.0"
},
"directories": {
"test": "tests"
Expand Down