fix(build): start code-generator service even for contracts only

This commit is contained in:
Jonathan Rainville 2019-02-25 10:06:28 -05:00 committed by Iuri Matias
parent ed77fc7287
commit 7fffc442d4
1 changed files with 2 additions and 2 deletions

View File

@ -218,11 +218,11 @@ class EmbarkController {
engine.startService("libraryManager");
engine.startService("codeRunner");
engine.startService("pipeline");
engine.startService("codeGenerator");
if (!options.onlyCompile) {
engine.startService("web3");
engine.startService("deployment", {onlyCompile: options.onlyCompile});
engine.startService("storage");
engine.startService("codeGenerator");
} else {
engine.startService('compiler');
}
@ -295,7 +295,7 @@ class EmbarkController {
engine.startService("codeGenerator");
engine.startService("codeRunner");
engine.startService("console");
if (isSecondaryProcess(engine)) {
return callback();
}