mirror of
https://github.com/status-im/embark-area-51.git
synced 2025-02-13 15:46:24 +00:00
fixes due to bad rebase
This commit is contained in:
parent
f86d035702
commit
f5883bdd1c
@ -89,7 +89,7 @@ class Engine {
|
||||
}
|
||||
|
||||
processManagerService(_options) {
|
||||
const ProcessManager = require('./processes/process_manager.js');
|
||||
const ProcessManager = require('./processes/processManager.js');
|
||||
this.processManager = new ProcessManager({
|
||||
events: this.events,
|
||||
logger: this.logger,
|
||||
@ -97,6 +97,10 @@ class Engine {
|
||||
});
|
||||
}
|
||||
|
||||
graphService(_options) {
|
||||
this.registerModule('graph');
|
||||
}
|
||||
|
||||
pipelineService(_options) {
|
||||
const self = this;
|
||||
this.events.emit("status", "Building Assets");
|
||||
@ -252,8 +256,8 @@ class Engine {
|
||||
this.registerModule('library_manager');
|
||||
}
|
||||
|
||||
codeCoverageService(_options) {
|
||||
this.registerModule('coverage');
|
||||
codeCoverageService(_options) {
|
||||
this.registerModule('coverage');
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -42,6 +42,9 @@ class ProcessLauncher {
|
||||
_subscribeToMessages() {
|
||||
const self = this;
|
||||
this.process.on('message', (msg) => {
|
||||
if (msg.error) {
|
||||
self.logger.error(msg.error);
|
||||
}
|
||||
if (msg.result === constants.process.log) {
|
||||
return self._handleLog(msg);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user