grunt-shell
Advanced tools
Comparing version 1.0.0 to 1.0.1
{ | ||
"name": "grunt-shell", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "Run shell commands", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -56,3 +56,5 @@ 'use strict'; | ||
process.stdin.setEncoding('utf8'); | ||
process.stdin.setRawMode(true); | ||
if (typeof process.stdin.setRawMode === 'function') { | ||
process.stdin.setRawMode(true); | ||
} | ||
process.stdin.pipe(cp.stdin); | ||
@@ -59,0 +61,0 @@ } |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
6957
53