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
attempt to import OutputChannelManager in the backend (node)
the application will fail to start with the error:
Failed to start the backend application:
ReferenceError: navigator is not defined
at /home/evinfug/workspaces/theia/node_modules/@phosphor/domutils/lib/platform.js:18:25
at Object.<anonymous> (/home/evinfug/workspaces/theia/node_modules/@phosphor/domutils/lib/platform.js:46:3)
at Module._compile (internal/modules/cjs/loader.js:967:30)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:1004:10)
at Module.load (internal/modules/cjs/loader.js:815:32)
at Module._load (internal/modules/cjs/loader.js:727:14)
at Function.Module._load (electron/js2c/asar.js:769:28)
at Module.require (internal/modules/cjs/loader.js:852:19)
at require (internal/modules/cjs/helpers.js:74:18)
at Object.<anonymous> (/home/evinfug/workspaces/theia/node_modules/@phosphor/domutils/lib/index.js:15:10)
The text was updated successfully, but these errors were encountered:
Bug Description:
The
OutputChannelManager
incorrectly importsbrowser
code meaning that the backend cannot use the manager:theia/packages/output/src/common/output-channel.ts
Lines 23 to 24 in 0221c61
The
OutputChannelManager
exists incommon
(can be used by both the browser and node) andcommon
should not import anything:Steps to Reproduce:
OutputChannelManager
in the backend (node
)The text was updated successfully, but these errors were encountered: