From 3dad28fcbdbd6d9be76630cc432143e81cfb06f2 Mon Sep 17 00:00:00 2001 From: Augustin Husson Date: Mon, 13 Jun 2022 16:40:08 +0200 Subject: [PATCH] UI: fix build (#10862) Signed-off-by: Augustin Husson --- web/ui/build_ui.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/ui/build_ui.sh b/web/ui/build_ui.sh index b59d81de41..8761bfa1e3 100644 --- a/web/ui/build_ui.sh +++ b/web/ui/build_ui.sh @@ -25,13 +25,13 @@ buildOrder=(lezer-promql codemirror-promql) function buildModule() { for module in "${buildOrder[@]}"; do echo "build ${module}" - npm run build -w "${module}" + npm run build -w "@prometheus-io/${module}" done } function buildReactApp() { echo "build react-app" - npm run build -w react-app + npm run build -w @prometheus-io/app rm -rf ./static/react mv ./react-app/build ./static/react }