Fix concurrent traceur exec error
This commit is contained in:
+7
-1
@@ -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',
|
||||
|
||||
Reference in New Issue
Block a user