From 9d11e3669e01f9169e61b98f1c2ae0d135e999e4 Mon Sep 17 00:00:00 2001 From: Christopher Kolstad Date: Wed, 12 Jun 2024 12:49:18 +0200 Subject: [PATCH] Run build script sequentially --- package.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/package.json b/package.json index 4d67852ddf..71dcc07c26 100644 --- a/package.json +++ b/package.json @@ -14,7 +14,6 @@ "dist", "docs", "frontend/build", - "frontend/build/static", "frontend/build/*", "frontend/index.js", "frontend/package.json" @@ -38,7 +37,7 @@ "build:backend": "tsc --pretty --strictNullChecks false", "build:frontend": "yarn --cwd ./frontend run build", "build:frontend:if-needed": "./scripts/build-frontend-if-needed.sh", - "build": "yarn copy-templates & yarn build:frontend & yarn build:backend", + "build": "yarn copy-templates; yarn build:frontend; yarn build:backend", "dev:backend": "TZ=UTC NODE_ENV=development tsc-watch --strictNullChecks false --onSuccess \"node dist/server-dev.js\"", "dev:frontend": "wait-on tcp:4242 && yarn --cwd ./frontend run dev", "dev": "concurrently \"yarn:dev:backend\" \"yarn:dev:frontend\"",