File tree Expand file tree Collapse file tree 3 files changed +19
-15
lines changed Expand file tree Collapse file tree 3 files changed +19
-15
lines changed Original file line number Diff line number Diff line change
1
+ sudo : false
2
+
1
3
language : node_js
4
+
2
5
node_js :
3
- - " 0.8"
4
6
- " 0.10"
5
- - " 0.11 "
6
- before_install :
7
- - ' [ "${TRAVIS_NODE_VERSION}" != "0.8" ] || npm install -g [email protected] '
8
- - npm install -g npm@latest
7
+ - " 4 "
8
+ - " 5 "
9
+
10
+ install :
9
11
- npm install -g grunt-cli
12
+ - npm install
13
+
14
+ matrix :
15
+ fast_finish : true
Original file line number Diff line number Diff line change @@ -215,13 +215,9 @@ module.exports = function(grunt) {
215
215
}
216
216
} ) ;
217
217
218
- // These plugins provide necessary tasks.
219
- grunt . loadNpmTasks ( "grunt-contrib-clean" ) ;
220
- grunt . loadNpmTasks ( "grunt-contrib-concat" ) ;
221
- grunt . loadNpmTasks ( "grunt-contrib-copy" ) ;
222
- grunt . loadNpmTasks ( "grunt-contrib-jshint" ) ;
223
- grunt . loadNpmTasks ( "grunt-contrib-watch" ) ;
224
- grunt . loadNpmTasks ( "grunt-include-replace" ) ;
218
+ // Load any grunt plugins found in package.json.
219
+ require ( "load-grunt-tasks" ) ( grunt , { scope : "devDependencies" } ) ;
220
+ require ( "time-grunt" ) ( grunt ) ;
225
221
226
222
// Load custom tasks
227
223
grunt . loadTasks ( "tasks" ) ;
Original file line number Diff line number Diff line change 31
31
},
32
32
"devDependencies" : {
33
33
"grunt" : " ~0.4.5" ,
34
- "grunt-contrib-clean" : " ~0.6 .0" ,
34
+ "grunt-contrib-clean" : " ~0.7 .0" ,
35
35
"grunt-contrib-concat" : " ~0.5.1" ,
36
36
"grunt-contrib-copy" : " ~0.8.0" ,
37
37
"grunt-contrib-jshint" : " ~0.11.0" ,
38
38
"grunt-contrib-watch" : " ~0.6.1" ,
39
- "grunt-include-replace" : " ~3.0.0" ,
39
+ "grunt-include-replace" : " ~3.2.0" ,
40
+ "load-grunt-tasks" : " ~3.4.0" ,
41
+ "time-grunt" : " ~1.3.0" ,
40
42
"yuitest" : " ~0.7.9"
41
43
},
42
44
"engines" : {
43
- "node" : " >=0.8 .0"
45
+ "node" : " >=0.10 .0"
44
46
},
45
47
"directories" : {
46
48
"test" : " tests"
You can’t perform that action at this time.
0 commit comments