Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[feat/#123] exe파일 생성을 위한 package.json 수정 #127

Merged
merged 1 commit into from
Nov 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 11 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
"forge": {
"packagerConfig": {
"name": "AlignLab",
"outDir": "out/"
"outDir": "out/",
"executableName": "alignlab"
},
"rebuildConfig": {},
"makers": [
Expand All @@ -21,17 +22,15 @@
"name": "AlignLab",
"authors": "AlignLab Inc.",
"exe": "AlignLab.exe",
"setupExe": "AlignLabInstaller.exe",
"productDescription": "AlignLab의 Windows 설치 파일입니다."
"setupExe": "AlignLabInstaller.exe"
}
},
{
"name": "@electron-forge/maker-dmg",
"config": {
"name": "AlignLab",
"overwrite": true,
"format": "ULFO",
"productDescription": "AlignLab의 Mac 설치 파일입니다."
"format": "ULFO"
}
},
{
Expand All @@ -40,11 +39,16 @@
},
{
"name": "@electron-forge/maker-deb",
"config": {}
"config": {
"name": "alignlab",
"productDescription": "AlignLab의 데스크톱 애플리케이션"
}
},
{
"name": "@electron-forge/maker-rpm",
"config": {}
"config": {
"name": "alignlab"
}
}
]
}
Expand Down
Loading