mirror of
https://gitee.com/eolink_admin/postcat.git
synced 2024-12-04 20:58:01 +08:00
a51feb0311
* 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>
14 lines
525 B
JavaScript
14 lines
525 B
JavaScript
/**
|
||
* Use electron-notarize to notarize app
|
||
*
|
||
* @description The app should be notarized after it has been signed and before it’s 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;
|
||
};
|