aboutsummaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authorStarscouts <starscouts@equestria.dev>2024-07-14 14:28:01 +0200
committerStarscouts <starscouts@equestria.dev>2024-07-14 14:28:01 +0200
commit361fe53a7e8a48e42ac8d7f4c07f33bf4ed178e2 (patch)
treef559784cd9a076c27fa6cd904641176efec89a6a /package.json
parent1bbe60d3a237cfe99dc6d1a3aa14de542668dc6f (diff)
downloadfaunerie-361fe53a7e8a48e42ac8d7f4c07f33bf4ed178e2.tar.gz
faunerie-361fe53a7e8a48e42ac8d7f4c07f33bf4ed178e2.tar.bz2
faunerie-361fe53a7e8a48e42ac8d7f4c07f33bf4ed178e2.zip
Fixes for WindowsHEADmane
Diffstat (limited to 'package.json')
-rw-r--r--[-rwxr-xr-x]package.json5
1 files changed, 3 insertions, 2 deletions
diff --git a/package.json b/package.json
index 26dfab4..bd0d3df 100755..100644
--- a/package.json
+++ b/package.json
@@ -3,11 +3,12 @@
"version": "3.2.0",
"scripts": {
"install": "cd updater && npm install && cd ..",
- "postinstall": "echo \"============================\n\nThank you for developing on Faunerie!\n\n- Run 'npm run build' to build TypeScript code\n- Run 'npm run debug' to start the application in debug mode\n- Run 'npm run debug-updater' to start Faunerie Updater in debug mode\n- Run 'npm run release' to build the release application\n\n============================\"",
+ "postinstall": "echo \"============================\n\nThank you for developing on Faunerie!\n\n- Run 'npm run build' to build TypeScript code\n- Run 'npm run debug' to start the application in debug mode\n- Run 'npm run debug-updater' to start Faunerie Updater in debug mode\n- Run 'npm run release-<platform>' to build the release application\n\n============================\"",
"build": "cd src && tsc && cd ..",
"debug": "npm run build && electron main.js",
"debug-updater": "npm run build && cd updater && npx electron main.js && cd ..",
- "release": "npm audit fix && npm install && ./build.sh"
+ "release-unix": "npm audit fix && npm install && ./build.sh",
+ "release-win": "npm audit fix && npm install && build.bat"
},
"dependencies": {
"@electron/remote": "^2.1.2",