mirror of
https://github.com/bitwarden/browser
synced 2025-12-18 17:23:37 +00:00
* Revert "Remove unnecessary plist keys in desktop_proxy (#10933)" This reverts commit4dbb036df1. * Revert "Fix TestFlight errors caused by desktop_proxy (#10928)" This reverts commit40cb4b5353. * Revert "[PM-5506] Enable electron fuses (#10073)" This reverts commit78c5e9c706. * Revert "[PM-7846] Implement a rust based native messaging proxy and IPC system (#9894)" This reverts commit55874b72bf.
36 lines
992 B
TypeScript
36 lines
992 B
TypeScript
import { NativeMessagingProxy } from "./proxy/native-messaging-proxy";
|
|
|
|
// We need to import the other dependencies using `require` since `import` will
|
|
// generate `Error: Cannot find module 'electron'`. The cause of this error is
|
|
// due to native messaging setting the ELECTRON_RUN_AS_NODE env flag on windows
|
|
// which removes the electron module. This flag is needed for stdin/out to work
|
|
// properly on Windows.
|
|
|
|
if (
|
|
process.argv.some((arg) => arg.indexOf("chrome-extension://") !== -1 || arg.indexOf("{") !== -1)
|
|
) {
|
|
if (process.platform === "darwin") {
|
|
// eslint-disable-next-line
|
|
const app = require("electron").app;
|
|
|
|
app.on("ready", () => {
|
|
app.dock.hide();
|
|
});
|
|
}
|
|
|
|
process.stdout.on("error", (e) => {
|
|
if (e.code === "EPIPE") {
|
|
process.exit(0);
|
|
}
|
|
});
|
|
|
|
const proxy = new NativeMessagingProxy();
|
|
proxy.run();
|
|
} else {
|
|
// eslint-disable-next-line
|
|
const Main = require("./main").Main;
|
|
|
|
const main = new Main();
|
|
main.bootstrap();
|
|
}
|