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 = {
3636 "ignore" : [
3737 "certificates"
3838 ] ,
39- "afterCopy" : [
40- "./src/after-copy.js"
41- ] ,
39+ "afterCopy" : [ "./src/hooks/after-copy.js" ] ,
4240 "appBundleId" : "tech.httptoolkit.desktop" ,
4341 "appCategoryType" : "public.app-category.developer-tools" ,
4442 "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"
4648 }
4749 } ,
4850 "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