Skip to content

Commit

Permalink
Fixed package json for macos & linux
Browse files Browse the repository at this point in the history
  • Loading branch information
deepnight committed Feb 26, 2021
1 parent b4aefa3 commit da86abe
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
"compile": "cd .. && haxe main.hxml && haxe renderer.hxml",
"doc": "cd .. && haxe doc.hxml",
"pack-prepare": "npm run doc && npm run compile",
"pack-test": "npm run pack-prepare && electron-builder build --win --dir",
"pack-win": "npm run pack-prepare && electron-builder build --win --x64 --ia32",
"pack-macos": "npm run pack-prepare && electron-builder build --mac",
"pack-linux-x86": "npm run pack-prepare && electron-builder build --linux",
"pack-linux-arm64": "npm run pack-prepare && electron-builder build --linux --arm64",
"pack-test": "npm run pack-prepare && electron-builder build --win --dir --publish never",
"pack-win": "npm run pack-prepare && electron-builder build --win --x64 --ia32 --publish never",
"pack-macos": "npm run pack-prepare && electron-builder build --mac --publish never",
"pack-linux-x86": "npm run pack-prepare && electron-builder build --linux --publish never",
"pack-linux-arm64": "npm run pack-prepare && electron-builder build --linux --arm64 --publish never",
"publish-github": "npm run pack-win -- --publish always",
"publish-itchio": "npm run pack-win && butler push \"redist/LDtk %npm_package_version% installer.exe\" deepnight/ldtk:win --userversion-file ../lastBuildVersion.txt",
"quicktype": "npm i -g quicktype && npm run qt-cs && npm run qt-js && npm run qt-py && npm run qt-rs && npm run qt-go && npm run qt-cpp",
Expand Down

0 comments on commit da86abe

Please sign in to comment.