From e1dec88b5411a8cbef8e257f789c19fd44a48593 Mon Sep 17 00:00:00 2001
From: phantomjinx
Date: Wed, 8 May 2024 13:37:31 +0100
Subject: [PATCH] chore: backend-middleware is a pre-requisite of test app
* The backend-middleware package must be compiled prior to starting the
test app
---
package.json | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package.json b/package.json
index 91f342a24..47fb8a71c 100644
--- a/package.json
+++ b/package.json
@@ -14,7 +14,7 @@
],
"scripts": {
"start": "concurrently -n hawtio,app \"yarn build:hawtio:watch\" \"yarn start:app\"",
- "start:app": "yarn workspace app start",
+ "start:app": "yarn build:backend-middleware && yarn workspace app start",
"build": "yarn build:hawtio",
"build:all": "yarn workspaces foreach -v -Aipt --exclude @hawtio/next-root run build",
"build:app": "yarn workspace app build",