fixes due to bad rebase

This commit is contained in:
Iuri Matias 2018-08-22 18:21:44 -04:00 committed by Pascal Precht
parent f873a26caf
commit b3ccaa3b8a
No known key found for this signature in database
GPG Key ID: 0EE28D8D6FD85D7D
2 changed files with 4 additions and 14 deletions

View File

@ -1,3 +1,7 @@
process.on('uncaughtException', function(e) {
process.send({error: e.stack});
});
const constants = require('../../constants');
const Events = require('./eventsWrapper');

View File

@ -1,17 +1,3 @@
let async = require('async');
const constants = require('./constants');
require('colors');
// Override process.chdir so that we have a partial-implementation PWD for Windows
const realChdir = process.chdir;
process.chdir = (...args) => {
if (!process.env.PWD) {
process.env.PWD = process.cwd();
}
realChdir(...args);
};
let version = require('../package.json').version;
class Embark {