From 8deda3905c2b23e0c5d111618e984d018ae9f11a Mon Sep 17 00:00:00 2001 From: Rim Date: Tue, 1 Apr 2025 07:31:42 -0400 Subject: [PATCH] chore: add build commands --- package.json | 4 +++- src/js/{build.js => deploy.js} | 0 2 files changed, 3 insertions(+), 1 deletion(-) rename src/js/{build.js => deploy.js} (100%) diff --git a/package.json b/package.json index a8002aa..0db3ea8 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,9 @@ "description": "Extremely detailed Web GUI to fetch comprehensive user, player and recent game statistics from the API. Delivers insights beyond the in-game Barracks and cod.tracker.gg", "main": "app.js", "scripts": { - "build": "node ./src/js/build.js", + "deploy": "node ./src/js/deploy.js", + "build-win": "pkg . --targets node18-win-x64 --experimental-modules --output dist/codtracker-js.exe", + "build-linux": "pkg . --targets node18-linux-x64 --experimental-modules --output dist/codtracker-js", "start": "node app.js", "dev": "nodemon app.js" }, diff --git a/src/js/build.js b/src/js/deploy.js similarity index 100% rename from src/js/build.js rename to src/js/deploy.js