boom-deploy
Advanced tools
Comparing version 0.2.47 to 0.2.48
@@ -63,2 +63,6 @@ | ||
new Task('stderr', function(){ | ||
local('ls -lah 1231213213'); | ||
}) | ||
new Task('dimcity', function(){ | ||
@@ -65,0 +69,0 @@ detectHead(); |
@@ -1,5 +0,7 @@ | ||
var cp = require('child_process'); | ||
var cp = require('child_process'); | ||
var logger = require('./logger'); | ||
var config = require('./config'); | ||
var $ = require('./stylize'); | ||
function spawnProcess(command, options, callback) { | ||
@@ -10,3 +12,3 @@ var child = cp.spawn(command, options); | ||
child.stderr.on('data', function (chunk) { | ||
process.stderr.write(chunk.toString()); | ||
process.stderr.write($.lightred(chunk.toString())); | ||
err.push(chunk.toString()); | ||
@@ -13,0 +15,0 @@ }); |
{ | ||
"name": "boom-deploy", | ||
"main": "boom.js", | ||
"version": "0.2.47", | ||
"version": "0.2.48", | ||
"description": "deploy your app", | ||
@@ -6,0 +6,0 @@ "keywords": [ |
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
83782
2366