-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add initial support for electron-builder * add new files
- Loading branch information
Showing
6 changed files
with
1,124 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
node_modules/ | ||
node_modules/ | ||
dist/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
node-linker=hoisted |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
appId: com.andersonlaverde.slackarm | ||
productName: SlackArm | ||
copyright: Copyright © 2023 Anderson Laverde | ||
## Pack the app in the read-only Electron format https://github.com/electron/asar | ||
asar: true | ||
# artifactName: ${productName}.${ext} | ||
directories: | ||
output: dist | ||
buildResources: resources | ||
files: | ||
- package.json | ||
- src/**/* | ||
- node_modules | ||
extraResources: | ||
- resources/**/* | ||
protocols: | ||
- name: electron-deep-linking | ||
schemes: | ||
- slack | ||
linux: | ||
category: Network | ||
synopsis: SlackArm | ||
icon: resources/icons/icon.png | ||
target: | ||
- target: AppImage | ||
arch: | ||
- arm64 | ||
publish: | ||
- provider: github | ||
releaseType: release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,19 +4,22 @@ | |
"description": "Slack on electron for Linux arm64", | ||
"main": "src/main.js", | ||
"scripts": { | ||
"start": "electron ." | ||
"start": "electron .", | ||
"pack": "electron-builder" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/andirsun/slack-arm64.git" | ||
}, | ||
"author": "Anderson Laverde", | ||
"author": "Anderson Laverde <[email protected]>", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/andirsun/slack-arm64/issues" | ||
"url": "https://github.com/andirsun/slack-arm64/issues", | ||
"email": "[email protected]" | ||
}, | ||
"homepage": "https://github.com/andirsun/slack-arm64#readme", | ||
"devDependencies": { | ||
"electron": "^27.1.3" | ||
"electron": "^27.1.3", | ||
"electron-builder": "^24.9.1" | ||
} | ||
} |
Oops, something went wrong.