From d89eca0c885f37f4c92cef793d398217606d910c Mon Sep 17 00:00:00 2001 From: Osmium Sorcerer Date: Mon, 16 Mar 2026 17:01:23 +0000 Subject: Remove deploy command from package.json Production builds are done via `bun run build` now rather than `bun run deploy`. Webpack doesn't recognize even recognize flag `-p`, and WebAO doesn't provide cross-env. --- package.json | 1 - 1 file changed, 1 deletion(-) diff --git a/package.json b/package.json index 41fd88c..b3da287 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,6 @@ "scripts": { "babel": "babel ui.js -o ui.b.js", "webpack": "webpack", - "deploy": "cross-env NODE_ENV=production webpack -p", "test": "jest", "test:coverage": "jest --coverage", "build": "bun build.js", -- cgit