From a551101523a9e23af0415b3b740aa76e7c6c3f81 Mon Sep 17 00:00:00 2001 From: Felix Mosheev <9304194+felixmosh@users.noreply.github.com> Date: Sun, 7 Jan 2024 22:50:35 +0200 Subject: [PATCH] fix: remove --parallel from build command, it fails the CI --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 9bc468ac..343a6d3a 100644 --- a/package.json +++ b/package.json @@ -31,7 +31,7 @@ "scripts": { "prepublishOnly": "yarn build", "lint": "eslint \"./packages/**/*.ts*\"", - "build": "lerna run build --parallel", + "build": "lerna run build", "start:dev:docker": "docker-compose up -d", "start:dev:ui": "lerna run --stream --scope @bull-board/ui start", "start:dev:server": "ts-node-dev --rs example.ts",