File tree 2 files changed +3
-8
lines changed
2 files changed +3
-8
lines changed Original file line number Diff line number Diff line change 21
21
"build:mac" : " npm run build && electron-builder --mac" ,
22
22
"build:linux" : " npm run build && electron-builder --linux"
23
23
},
24
- "build" : {
25
- "appId" : " com.ryansoderberg.imagine"
26
- },
27
24
"dependencies" : {
28
25
"@electron-toolkit/preload" : " ^3.0.1" ,
29
26
"@electron-toolkit/utils" : " ^3.0.0" ,
Original file line number Diff line number Diff line change @@ -3,6 +3,9 @@ import type { AfterPackContext } from 'electron-builder'
3
3
import { notarize } from '@electron/notarize'
4
4
import path from 'path'
5
5
6
+ import * as dotenv from 'dotenv'
7
+ dotenv . config ( )
8
+
6
9
export async function afterSign ( {
7
10
appOutDir,
8
11
packager,
@@ -40,11 +43,6 @@ export async function afterSign({
40
43
return
41
44
}
42
45
43
- console . log ( 'Notarizing with...' )
44
- console . log ( ` primaryBundleId: ${ appBundleId } ` )
45
- console . log ( ` username: ${ appleId } ` )
46
- console . log ( ` file: ${ appPath } ` )
47
-
48
46
await notarize ( {
49
47
appPath,
50
48
appleId,
You can’t perform that action at this time.
0 commit comments