Merge pull request #4739 from h3poteto/feat/mas
Add mas build configuration
This commit is contained in:
commit
274aa76dec
|
@ -6,3 +6,4 @@ dist
|
|||
tsconfig.tsbuildinfo
|
||||
.yarn/*
|
||||
!.yarn/releases
|
||||
profile/*
|
|
@ -0,0 +1,37 @@
|
|||
appId: social.whalebird.app
|
||||
productName: Whalebird
|
||||
copyright: Copyright © 2018 Akira Fukushima
|
||||
artifactName: "${productName}-${version}-${os}-${arch}.${ext}"
|
||||
buildVersion: "169"
|
||||
directories:
|
||||
output: dist
|
||||
buildResources: resources
|
||||
files:
|
||||
- from: .
|
||||
filter:
|
||||
- package.json
|
||||
- app
|
||||
mas:
|
||||
type: distribution
|
||||
entitlements: "plist/parent.plist"
|
||||
entitlementsInherit: "plist/child.plist"
|
||||
entitlementsLoginHelper: "plist/loginhelper.plist"
|
||||
hardenedRuntime: false
|
||||
gatekeeperAssess: false
|
||||
extendInfo:
|
||||
ITSAppUsesNonExemptEncryption: "false"
|
||||
provisioningProfile: "profile/socialwhalebirdapp_MAS.provisionprofile"
|
||||
mac:
|
||||
icon: resources/icons/icon.icns
|
||||
target:
|
||||
- target: mas
|
||||
arch:
|
||||
- universal
|
||||
category: "public.app-category.social-networking"
|
||||
hardenedRuntime: true
|
||||
gatekeeperAssess: false
|
||||
darkModeSupport: false
|
||||
notarize: false
|
||||
singleArchFiles: "*"
|
||||
asarUnpack: "node_modules/**/*.node"
|
||||
publish: null
|
|
@ -1,6 +1,6 @@
|
|||
appId: social.whalebird.app
|
||||
productName: Whalebird
|
||||
copyright: Copyright © 2023 Akira Fukushima
|
||||
copyright: Copyright © 2018 Akira Fukushima
|
||||
artifactName: "${productName}-${version}-${os}-${arch}.${ext}"
|
||||
directories:
|
||||
output: dist
|
||||
|
|
|
@ -8,6 +8,7 @@
|
|||
"scripts": {
|
||||
"dev": "nextron",
|
||||
"build": "nextron build",
|
||||
"build:mas": "nextron build --config ./electron-builder.mas.yml",
|
||||
"postinstall": "electron-builder install-app-deps",
|
||||
"typecheck": "tsc -p renderer --noEmit && tsc -p main --noEmit",
|
||||
"lint": "eslint renderer --ext ts,tsx",
|
||||
|
|
Loading…
Reference in New Issue