
* chore: Bump various packages * feat: Update everything to ESM * fix: building and porting js to cjs
18 lines
509 B
JavaScript
18 lines
509 B
JavaScript
require("dotenv").config();
|
|
const { notarize } = require("electron-notarize");
|
|
|
|
exports.default = async function notarizing(context) {
|
|
const { electronPlatformName, appOutDir } = context;
|
|
if (electronPlatformName !== "darwin") {
|
|
return;
|
|
}
|
|
|
|
const appName = context.packager.appInfo.productFilename;
|
|
|
|
return await notarize({
|
|
appBundleId: "com.ciderapp.cider",
|
|
appPath: `${appOutDir}/${appName}.app`,
|
|
appleId: process.env.APPLEID,
|
|
appleIdPassword: process.env.APPLEIDPASS,
|
|
});
|
|
};
|