我正在尝试解决电子应用程序中棘手的生产问题。
电子造粒机大约需要5-6分钟来造粒
我在那里只能构建project.app并通过不构建.dmg文件等来节省时间吗?
答案 0 :(得分:1)
不确定是否可以避免dmg和mac而仅提供.app
文件,但是可以通过在mac build config中指定目标选项来避免生成dmg和zip文件
"mac": {
"target": [
"dmg"
],
},
答案 1 :(得分:1)
只需将 dir 添加为package.json中的目标
"build": {
"appId": "app.id",
"mac": {
"category": "your.app.category.type",
"target": "dir"
}
}