From 5b9b1b7e8102857a04ce9c7a7b88a3c00b1eebf3 Mon Sep 17 00:00:00 2001 From: David Skoland Date: Tue, 27 Jan 2026 22:54:08 +0100 Subject: use esbuild --- package.json | 1 + 1 file changed, 1 insertion(+) (limited to 'package.json') diff --git a/package.json b/package.json index 92b4549..53948cc 100644 --- a/package.json +++ b/package.json @@ -55,6 +55,7 @@ "@fingerprintjs/fingerprintjs": "^3.4.2", "@types/websocket": "^1.0.10", "core-js": "^3.47.0", + "esbuild-loader": "^4.4.2", "golden-layout": "^2.6.0", "jest-environment-jsdom": "^29.7.0", "regenerator-runtime": "^0.13.11", -- cgit From 83dc451b85184a42ddcf75e380a2d33b76c61d61 Mon Sep 17 00:00:00 2001 From: David Skoland Date: Tue, 27 Jan 2026 22:56:21 +0100 Subject: use build.js --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'package.json') diff --git a/package.json b/package.json index 53948cc..d46a9bd 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ "deploy": "cross-env NODE_ENV=production webpack -p", "test": "jest", "test:coverage": "jest --coverage", - "build": "webpack --config webpack.config.js", + "build": "bun build.js", "start": "webpack serve --config webpack.config.js --mode development", "lint": "eslint webAO --ext .js", "lint:fix": "npm run lint -- --fix", -- cgit