mirror of https://github.com/embarklabs/embark.git
fix(build): start code-generator service even for contracts only
This commit is contained in:
parent
ed77fc7287
commit
7fffc442d4
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue