You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The main thing I don't understand is how the willInterruptProcess function works.
I don't see options.process assigned anywhere?
capture(outerProcess) {
if (_process) {
throw new Error(`process already captured at: \n\n${_processCapturedLocation.stack}`);
}
if (outerProcess instanceof EventEmitter === false) {
throw new Error('attempt to capture bad process instance');
}
Reported in more detail here: oven-sh/bun#5121
The main thing I don't understand is how the
willInterruptProcessfunction works.I don't see
options.processassigned anywhere?called from here: https://github.com/ember-cli/ember-cli/blob/master/lib/cli/index.js#L52
the global
processis not an instanceof EventEmitter