fixes due to bad rebase
This commit is contained in:
parent
f873a26caf
commit
b3ccaa3b8a
|
@ -1,3 +1,7 @@
|
||||||
|
process.on('uncaughtException', function(e) {
|
||||||
|
process.send({error: e.stack});
|
||||||
|
});
|
||||||
|
|
||||||
const constants = require('../../constants');
|
const constants = require('../../constants');
|
||||||
const Events = require('./eventsWrapper');
|
const Events = require('./eventsWrapper');
|
||||||
|
|
||||||
|
|
14
lib/index.js
14
lib/index.js
|
@ -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;
|
let version = require('../package.json').version;
|
||||||
|
|
||||||
class Embark {
|
class Embark {
|
||||||
|
|
Loading…
Reference in New Issue