mirror of https://github.com/embarklabs/embark.git
Add watcher to console command
This commit is contained in:
parent
2d7876146b
commit
a5b9502e82
15
lib/index.js
15
lib/index.js
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue