css-brunch
Advanced tools
Comparing version 1.1.0 to 1.1.1
@@ -0,1 +1,4 @@ | ||
## css-brunch 1.1.1 (April 15, 2012) | ||
* Fixed error reporting when installing the package. | ||
## css-brunch 1.1.0 (April 09, 2012) | ||
@@ -2,0 +5,0 @@ * Added windows support. |
{ | ||
"name": "css-brunch", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"description": "Adds CSS support to brunch.", | ||
@@ -5,0 +5,0 @@ "author": "Paul Miller (http://paulmillr.com/)", |
@@ -12,3 +12,3 @@ var exec = require('child_process').exec; | ||
exec(command, function(error, stdout, stderr) { | ||
if (error != null) return process.stderr.write('Error', stderr.toString()); | ||
if (error != null) return process.stderr.write(stderr.toString()); | ||
process.stdout.write(stdout.toString()); | ||
@@ -15,0 +15,0 @@ }); |
2811