File tree Expand file tree Collapse file tree 4 files changed +16
-6
lines changed Expand file tree Collapse file tree 4 files changed +16
-6
lines changed Original file line number Diff line number Diff line change @@ -36,13 +36,15 @@ module.exports = {
36
36
"ignore" : [
37
37
"certificates"
38
38
] ,
39
- "afterCopy" : [
40
- "./src/after-copy.js"
41
- ] ,
39
+ "afterCopy" : [ "./src/hooks/after-copy.js" ] ,
42
40
"appBundleId" : "tech.httptoolkit.desktop" ,
43
41
"appCategoryType" : "public.app-category.developer-tools" ,
44
42
"osxSign" : {
45
- "keychain" : "httptoolkit-build.keychain"
43
+ "keychain" : "httptoolkit-build.keychain" ,
44
+ "gatekeeper-assess" : false ,
45
+ "hardened-runtime" : true ,
46
+ "entitlements" : "src/entitlements.plist" ,
47
+ "entitlements-inherit" : "src/entitlements.plist"
46
48
}
47
49
} ,
48
50
"electronWinstallerConfig" : {
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version =" 1.0" >
4
+ <dict >
5
+ <key >com.apple.security.cs.allow-unsigned-executable-memory </key >
6
+ <true />
7
+ </dict >
8
+ </plist >
Original file line number Diff line number Diff line change
1
+ require ( 'ts-node/register' ) ;
2
+ module . exports = require ( '../after-copy-insert-server' ) ;
You can’t perform that action at this time.
0 commit comments