postcat/scripts/notarize.js
Scarqin a51feb0311
feat/ui-component (#188)
* feat: update extension UI
* fix(components): [manage-access] a tag rename to span
* feat: update e2e

Co-authored-by: buqiyuan <1743369777@qq.com>
Co-authored-by: 夜鹰 <17kungfuboy@gmail.com>
2022-12-30 23:46:51 +08:00

14 lines
525 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* Use electron-notarize to notarize app
*
* @description The app should be notarized after it has been signed and before its packaged into a dmg.
* Electron-builder has a hook for this called afterSign. You can link that to a javascript file that will be called (and waited for) after sign.
* You add it to your top level “build” configuration
*
* @link https://kilianvalkhof.com/2019/electron/notarizing-your-electron-application/
*/
exports.default = function notarizing(context) {
return context;
};