-
Notifications
You must be signed in to change notification settings - Fork 203
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
Installers #339
Merged
Merged
Installers #339
Changes from 2 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
b9d76c9
Add electron-builder and create installers
martpie 4da84c4
Fix builds not including app.html
martpie 57aedce
Fix images not included in builds
martpie ec704fd
Fix conflicts from master
martpie cde9ff8
Fix Linux build and add productName key in package.json
martpie 8495ae2
Add AppImage for Linux (fix #335)
martpie 9cd37bb
Remove electron-packager
martpie 02bc493
Add category for Linux build, clean some files
martpie File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,5 +1,6 @@ | ||
node_modules/ | ||
src/dist | ||
dist/ | ||
cache/ | ||
build/dist | ||
|
||
|
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
"type": "git", | ||
"url": "https://github.com/KeitIG/museeks" | ||
}, | ||
"author": "Pierre de la Martinière", | ||
"author": "Pierre de la Martinière <[email protected]>", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/KeitIG/museeks/issues" | ||
|
@@ -20,7 +20,42 @@ | |
"compile": "webpack --config webpack.config.js --progress --colors", | ||
"lint": "eslint . --config .eslintrc --cache", | ||
"dev": "webpack --config webpack.config.js --progress --colors --watch", | ||
"build": "npm run build:eslint && npm run build:compile && node build.js" | ||
"build": "npm run build:eslint && npm run build:compile && node build.js", | ||
"package:lw": "build -lw --ia32 --x64", | ||
"package:l": "build -l --ia32 --x64", | ||
"package:w": "build -w --ia32 --x64", | ||
"package:m": "build -m" | ||
}, | ||
"build": { | ||
"appId": "io.museeks.app", | ||
"files": [ | ||
"src/*", | ||
"src/dist/**/*", | ||
"src/main-process/**/*", | ||
"node_modules/teeny-conf/**/*" | ||
], | ||
"mac": { | ||
"category": "public.app-category.music" | ||
}, | ||
"dmg": { | ||
"contents": [ | ||
{ | ||
"x": 110, | ||
"y": 150 | ||
}, | ||
{ | ||
"x": 240, | ||
"y": 150, | ||
"type": "link", | ||
"path": "/Applications" | ||
} | ||
] | ||
}, | ||
"linux": { | ||
"target": [ | ||
"deb" | ||
] | ||
} | ||
}, | ||
"dependencies": { | ||
"bluebird": "^3.5.0", | ||
|
@@ -49,6 +84,7 @@ | |
"teeny-conf": "1.1.0" | ||
}, | ||
"devDependencies": { | ||
"asar": "^0.13.0", | ||
"babel-core": "6.23.1", | ||
"babel-eslint": "7.1.1", | ||
"babel-loader": "6.3.2", | ||
|
@@ -58,6 +94,8 @@ | |
"babel-preset-react": "6.23.0", | ||
"babili-webpack-plugin": "0.0.11", | ||
"css-loader": "0.26.2", | ||
"electron": "^1.6.2", | ||
"electron-builder": "^17.0.1", | ||
"electron-packager": "8.5.2", | ||
"eslint": "3.17.0", | ||
"eslint-plugin-import": "2.2.0", | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can be split into multiple fields: https://docs.npmjs.com/files/package.json#people-fields-author-contributors
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I guess it's fine