Add watcher to console command

This commit is contained in:
Anthony Laibe 2018-07-24 16:46:52 +01:00
parent 2d7876146b
commit a5b9502e82
1 changed files with 3 additions and 12 deletions

View File

@ -155,14 +155,6 @@ class Embark {
});
}
engine.startService("fileWatcher");
if (!options.useDashboard) {
const REPL = require('./dashboard/repl.js');
let repl = new REPL({env: engine.env});
repl.start(function () {
callback();
});
}
}
], function (err, _result) {
if (err) {
@ -274,6 +266,7 @@ class Embark {
engine.startService("deployment", {onlyCompile: false});
engine.startService("storage");
engine.startService("codeGenerator");
engine.startService("fileWatcher");
callback();
},
@ -284,16 +277,14 @@ class Embark {
},
function waitForWriteFinish(callback) {
engine.logger.info("Finished deploying".underline);
engine.events.on('outputDone', (err) => {
engine.events.once('outputDone', (err) => {
engine.logger.info(__("finished building").underline);
callback(err);
});
},
function startREPL(callback) {
let repl = new REPL({env: engine.env});
repl.start(function () {
callback();
});
repl.start(callback);
}
], function (err, _result) {
if (err) {