From 28c71be05128cfb0bc7bad6cf1eb51d4a27c4fea Mon Sep 17 00:00:00 2001 From: Unifox Date: Thu, 6 Feb 2025 01:48:23 -0700 Subject: [PATCH] Add build_start script It's just easier to test when rebuilding is needed to have one command for build and start. It literally just calls build and start one after the other lol --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 4134377e..280fbaae 100644 --- a/package.json +++ b/package.json @@ -4,6 +4,7 @@ "main": "./.erb/dll/main.bundle.dev.js", "version": "1.5.2", "scripts": { + "build_start": "npm run build && npm run start", "build-rust-scripts": "ts-node ./.erb/scripts/build-rust-scripts.js", "build": "concurrently \"npm run build:main\" \"npm run build:renderer\"", "build:dll": "cross-env NODE_ENV=development webpack --config ./.erb/configs/webpack.config.renderer.dev.dll.ts",