Add icon to server

This commit is contained in:
Merijn Hendriks 2021-12-28 21:27:11 +01:00
parent 911b96997e
commit 74ccc497f0
2 changed files with 3 additions and 1 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 71 KiB

View File

@ -7,11 +7,13 @@
"build:ts": "npx babel Server/src --extensions \".ts\" --out-dir Server/obj/babel",
"build:bundle": "npx browserify --debug --node Server/obj/babel/main.js > Server/obj/server.js",
"build:exe": "npx nexe -t x64-14.15.3 -i Server/obj/server.js -o Server/bin/server.exe",
"build:icon": "cd node_modules/rcedit/bin && rcedit-x64.exe ../../../Server/bin/server.exe --set-icon ../../../Server/assets/images/favicon.ico",
"launch": "node --trace-warnings Server/obj/server.js",
"lint:fix": "npx eslint --fix \"./src/**/*.ts\"",
"lint:check": "npx eslint \"./src/**/*.ts\"",
"debug": "npm run build:ts && npm run build:bundle && npm run launch",
"release": "npm run build:ts && npm run build:bundle && npm run build:exe"
"release:all": "npm run build:ts && npm run build:bundle && npm run build:exe",
"release:win": "npm run release:all && npm run build:icon"
},
"dependencies": {
"source-map-support": "^0.5.0",