summaryrefslogtreecommitdiffstats
path: root/Gruntfile.js
diff options
context:
space:
mode:
authorkpdecker <kpdecker@gmail.com>2013-10-14 12:15:33 -0500
committerkpdecker <kpdecker@gmail.com>2013-10-14 12:15:33 -0500
commit64de5c681273969c11bf36d1b63cbd3b726d7954 (patch)
tree4e0d4f8fe83a23b84ab3a64f6b88f33863bcd75e /Gruntfile.js
parent15500aef7002738cbd3f9ca6a5423529b6c888e9 (diff)
downloadhandlebars.js-64de5c681273969c11bf36d1b63cbd3b726d7954.zip
handlebars.js-64de5c681273969c11bf36d1b63cbd3b726d7954.tar.gz
handlebars.js-64de5c681273969c11bf36d1b63cbd3b726d7954.tar.bz2
Improve packager error tracking
Diffstat (limited to 'Gruntfile.js')
-rw-r--r--Gruntfile.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/Gruntfile.js b/Gruntfile.js
index 8687bba..a316715 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -118,7 +118,7 @@ module.exports = function(grunt) {
grunt.registerTask('packager-fork', function() {
// Allows us to run the packager task out of process to work around the multiple
// traceur exec issues
- grunt.util.spawn({grunt: true, args: ['packager']}, this.async());
+ grunt.util.spawn({grunt: true, args: ['--stack', 'packager'], opts: {stdio: 'inherit'}}, this.async());
});
grunt.registerTask('test', function() {
var done = this.async();