1
0
mirror of https://github.com/bitwarden/directory-connector synced 2025-12-20 18:23:13 +00:00

more fixes. everything is broken. shelving this for now.

This commit is contained in:
Jared McCannon
2025-12-12 12:33:49 -06:00
parent 7deec78ca4
commit 98260e6087
6 changed files with 84 additions and 69 deletions

View File

@@ -1,10 +1,9 @@
/* eslint-disable @typescript-eslint/no-var-requires */
import { notarize } from "@electron/notarize";
import { config } from "dotenv";
config();
exports.default = async function notarizing(context) {
export default async function notarizing(context) {
const { electronPlatformName, appOutDir } = context;
if (electronPlatformName !== "darwin") {
return;
@@ -35,4 +34,4 @@ exports.default = async function notarizing(context) {
appleIdPassword: appleIdPassword,
});
}
};
}