Add watcher to console command
This commit is contained in:
parent
b679d3031a
commit
b8ef9ee148
15
lib/index.js
15
lib/index.js
|
@ -152,14 +152,6 @@ class Embark {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
engine.startService("fileWatcher");
|
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) {
|
], function (err, _result) {
|
||||||
if (err) {
|
if (err) {
|
||||||
|
@ -271,6 +263,7 @@ class Embark {
|
||||||
engine.startService("deployment", {onlyCompile: false});
|
engine.startService("deployment", {onlyCompile: false});
|
||||||
engine.startService("storage");
|
engine.startService("storage");
|
||||||
engine.startService("codeGenerator");
|
engine.startService("codeGenerator");
|
||||||
|
engine.startService("fileWatcher");
|
||||||
|
|
||||||
callback();
|
callback();
|
||||||
},
|
},
|
||||||
|
@ -281,16 +274,14 @@ class Embark {
|
||||||
},
|
},
|
||||||
function waitForWriteFinish(callback) {
|
function waitForWriteFinish(callback) {
|
||||||
engine.logger.info("Finished deploying".underline);
|
engine.logger.info("Finished deploying".underline);
|
||||||
engine.events.on('outputDone', (err) => {
|
engine.events.once('outputDone', (err) => {
|
||||||
engine.logger.info(__("finished building").underline);
|
engine.logger.info(__("finished building").underline);
|
||||||
callback(err);
|
callback(err);
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
function startREPL(callback) {
|
function startREPL(callback) {
|
||||||
let repl = new REPL({env: engine.env});
|
let repl = new REPL({env: engine.env});
|
||||||
repl.start(function () {
|
repl.start(callback);
|
||||||
callback();
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
], function (err, _result) {
|
], function (err, _result) {
|
||||||
if (err) {
|
if (err) {
|
||||||
|
|
Loading…
Reference in New Issue