From 3757082d818ad839fba16fc0d79fda63dde1a8d6 Mon Sep 17 00:00:00 2001 From: Filip Hlavac Date: Tue, 21 May 2024 07:39:17 +0200 Subject: [PATCH] Update start script to make sure build finishes first --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index c2524ce4..bd42c6d1 100644 --- a/package.json +++ b/package.json @@ -18,7 +18,7 @@ "cypress:run:e2e": "cypress run --headless", "cypress:run:cp": "cypress run --component", "cypress:run:ci": "start-server-and-test start http://localhost:8006 cypress:run:e2e", - "start": "concurrently --kill-others \"npm run build:watch\" \"npm run docs:develop -w @patternfly/react-component-groups\"", + "start": "npm run build && concurrently --kill-others \"npm run build:watch\" \"npm run docs:develop -w @patternfly/react-component-groups\"", "serve:docs": "npm run docs:serve -w @patternfly/react-component-groups", "clean": "npm run clean -w @patternfly/react-component-groups", "lint:js": "node --max-old-space-size=4096 node_modules/.bin/eslint packages --ext js,jsx,ts,tsx --cache",