Fix concurrent traceur exec error

This commit is contained in:
kpdecker
2013-10-09 02:37:02 -07:00
parent 63bb459ac6
commit 820cbb006e
+7 -1
View File
@@ -64,9 +64,15 @@ module.exports = function(grunt) {
'parser',
'transpile:amd',
'transpile:cjs',
'packager',
'packager-fork',
'uglify']);
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());
});
// Run a server. This is ideal for running the QUnit tests in the browser.
this.registerTask('server', [
'build',