Skip to content

Commit

Permalink
version bump, shadow-build bump, added linux to release
Browse files Browse the repository at this point in the history
  • Loading branch information
dvcrn committed Nov 6, 2015
1 parent ab56cd7 commit 437dda1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions node/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "markright",
"productName": "MarkRight",
"version": "0.1.2",
"version": "0.1.3",
"electronVersion": "0.33.6",
"description": "",
"main":"app.js",
Expand All @@ -19,9 +19,10 @@
"start": "electron node/",
"release": "npm run clean && npm run compile:prod && npm run build && npm run package",

"clean": "npm run clean:dist && npm run clean:source",
"clean": "npm run clean:dist && npm run clean:source && npm run clean:target",
"clean:dist": "rm -rf ./dist",
"clean:source": "rm -rf ./node/ui/js/",
"clean:target": "rm -rf ./target/",

"compile:dev": "lein run -m build/main-dev && lein run -m build/ui-dev",
"compile:prod": "lein run -m build/prod",
Expand All @@ -31,7 +32,7 @@
"build:win": "electron-packager node/ $npm_package_productName --out=dist --arch=all --platform=win32 --ignore='^/dist$' --prune --asar --overwrite --icon=./resources/icon.ico --version=$npm_package_electronVersion",
"build:linux": "electron-packager node/ $npm_package_productName --out=dist --arch=all --platform=linux --ignore='^/dist$' --prune --asar --overwrite --icon=./resources/icon.png --version=$npm_package_electronVersion",

"package": "npm run package:win32 && npm run package:win64 && npm run package:osx",
"package": "npm run package:win32 && npm run package:win64 && npm run package:osx && npm run package:linux",
"package:win64": "electron-builder dist/markright-win32-x64/ --platform=win --out=dist --config=config.json && mv 'dist/MarkRight Setup.exe' dist/MarkRight_Windows64.exe",
"package:win32": "electron-builder dist/markright-win32-ia32/ --platform=win --out=dist --config=config.json && mv 'dist/MarkRight Setup.exe' dist/MarkRight_Windows32.exe",
"package:osx": "hdiutil create -format UDZO -srcfolder dist/MarkRight-darwin-x64/MarkRight.app dist/MarkRight_Mac.dmg",
Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@

:profiles {:dev {:source-paths ["src/dev"]
:dependencies [[thheller/shadow-devtools "0.1.31"]
[thheller/shadow-build "1.0.160"]]}}
[thheller/shadow-build "1.0.161"]]}}
)

0 comments on commit 437dda1

Please sign in to comment.