This commit is contained in:
Spencer Alger
2015-01-06 07:08:17 -07:00
parent 4fc1c91634
commit 93ea7a3fac
13 changed files with 439 additions and 376 deletions

View File

@ -21,10 +21,9 @@ module.exports = function (grunt) {
branches.forEach(function (branch) {
tasks.push(
'run:install_es_' + branch,
'run:es_' + branch,
'esvm:' + branch,
'mochacov:integration_' + branch,
'stop:es_' + branch
'esvm_shutdown:' + branch
);
});
@ -72,6 +71,7 @@ module.exports = function (grunt) {
writeFile(browserBuildsPath, browserBuilds),
writeFile(packagePath, JSON.stringify(pkg, null, ' '))
]);
}).nodeify(this.async());
})
.nodeify(this.async());
});
};