We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 26d5037 + 166859f commit 646d205Copy full SHA for 646d205
3 files changed
.travis.yml
@@ -2,5 +2,6 @@ language: node_js
2
node_js:
3
- "0.8"
4
- "0.10"
5
+ - "0.11"
6
before_install:
7
- npm install -g grunt-cli
package.json
@@ -11,7 +11,7 @@
11
}
12
],
13
"engines": {
14
- "node": ">=0.2.0"
+ "node": ">=0.8.0"
15
},
16
"directories": {
17
"lib": "lib"
src/cli/node.js
@@ -17,16 +17,7 @@ cli({
18
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
29
- }
+ process.exit(code || 0);
30
31
32
isDirectory: function(name){
0 commit comments