Skip to content

Commit

Permalink
Added command for creating the DMG. Added it to the gitignore.
Browse files Browse the repository at this point in the history
  • Loading branch information
joshghent committed Aug 9, 2018
1 parent 9353054 commit 46f51f2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -66,3 +66,5 @@ typings/
dist/

GifBarApp/

GifBar.dmg
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@joshghent/gifbar",
"version": "1.0.0",
"description": "A Mac Menu bar for getting your favourite gifs URL to send to your friends",
"main": "index.js",
"main": "./dist/index.js",
"license": "MIT",
"private": false,
"author": "Josh Ghent <me@joshghent.com> (https://joshghent.com)",
Expand All @@ -13,7 +13,8 @@
"watch:react": "parcel watch main.js --target=node",
"watch": "concurrently \"npm watch:electron\" \"npm watch:react\" ",
"build": "parcel build index.js --target=electron && parcel build main.js --target=node",
"package": "electron-packager . GifBar --platform=darwin --icon=icon.icns --overwrite --out=GifBarApp"
"package": "electron-packager . GifBar --platform=darwin --icon=icon.icns --overwrite --out=GifBarApp",
"package-dmg": "electron-installer-dmg ./GifBarApp/GifBar-darwin-x64/GifBar.app GifBar --icon=icon.icns --overwrite --out=GifBarInstaller"
},
"keywords": [
"giphy",
Expand Down

0 comments on commit 46f51f2

Please sign in to comment.