Skip to content

Commit

Permalink
feat: electron-builder implemented and icons are set
Browse files Browse the repository at this point in the history
  • Loading branch information
Nishchit14 committed Nov 10, 2023
1 parent e52d82a commit aada322
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 1 deletion.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 19 additions & 1 deletion packages/firecamp-electron/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@
"private": true,
"scripts": {
"start": "tsc && electron .",
"test": "echo \"Error: no test specified\" && exit 1"
"test": "echo \"Error: no test specified\" && exit 1",
"pack": "electron-builder --dir",
"build": "electron-builder",
"postinstall": "electron-builder install-app-deps"
},
"keywords": [],
"author": "",
Expand All @@ -17,5 +20,20 @@
"devDependencies": {
"@types/node": "^20.8.9",
"electron": "^27.0.2"
},
"build": {
"appId": "com.firecamp.desktop",
"files": [
"./build/**/*",
"dist/**/*",
"package.json"
],
"directories": {
"buildResources": "assets"
},
"mac": {
"category": "public.app-category.developer-tools",
"icon": "icons/app-icon.png"
}
}
}

0 comments on commit aada322

Please sign in to comment.