mirror of https://github.com/embarklabs/embark.git
No need for pipeline service, assets are not compiled
This commit is contained in:
parent
08a3879453
commit
da1691327a
|
@ -263,7 +263,6 @@ class Embark {
|
|||
engine.startService("libraryManager");
|
||||
engine.startService("codeRunner");
|
||||
engine.startService("web3");
|
||||
engine.startService("pipeline");
|
||||
engine.startService("deployment", {onlyCompile: false});
|
||||
engine.startService("storage");
|
||||
engine.startService("codeGenerator");
|
||||
|
@ -277,10 +276,7 @@ class Embark {
|
|||
},
|
||||
function waitForWriteFinish(callback) {
|
||||
engine.logger.info("Finished deploying".underline);
|
||||
engine.events.on('outputDone', (err) => {
|
||||
engine.logger.info(__("finished building").underline);
|
||||
callback(err);
|
||||
});
|
||||
callback();
|
||||
},
|
||||
function startREPL(callback) {
|
||||
let repl = new REPL({env: engine.env});
|
||||
|
|
Loading…
Reference in New Issue