File tree Expand file tree Collapse file tree 3 files changed +3
-11
lines changed Expand file tree Collapse file tree 3 files changed +3
-11
lines changed Original file line number Diff line number Diff line change @@ -2,5 +2,6 @@ language: node_js
2
2
node_js :
3
3
- " 0.8"
4
4
- " 0.10"
5
+ - " 0.11"
5
6
before_install :
6
7
- npm install -g grunt-cli
Original file line number Diff line number Diff line change 11
11
}
12
12
],
13
13
"engines" : {
14
- "node" : " >=0.2 .0"
14
+ "node" : " >=0.8 .0"
15
15
},
16
16
"directories" : {
17
17
"lib" : " lib"
Original file line number Diff line number Diff line change 17
17
} ,
18
18
19
19
quit : function ( code ) {
20
-
21
- //Workaround for https://github.com/joyent/node/issues/1669
22
-
23
- if ( ( ! process . stdout . flush || ! process . stdout . flush ( ) ) && ( parseFloat ( process . versions . node ) < 0.5 ) ) {
24
- process . once ( "drain" , function ( ) {
25
- process . exit ( code || 0 ) ;
26
- } ) ;
27
- } else {
28
- process . exit ( code || 0 ) ;
29
- }
20
+ process . exit ( code || 0 ) ;
30
21
} ,
31
22
32
23
isDirectory : function ( name ) {
You can’t perform that action at this time.
0 commit comments