aboutsummaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
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",