From a379c2d7ba7115072be1be1be3238d63f82cffb6 Mon Sep 17 00:00:00 2001 From: sergeyteleshev Date: Wed, 8 Jul 2026 17:44:33 +0200 Subject: [PATCH] dbeaver/pro#9755 adds frontend cleanup for js artifacts before each app build (#4450) * dbeaver/pro#9755 adds frontend cleanup for js artifacts before each app build * dbeaver/pro#9775 adds x to log (revert it) * dbeaver/pro#9775 adds clear commands to build frontend script --------- Co-authored-by: Daria Marutkina <125263541+dariamarutkina@users.noreply.github.com> --- deploy/build-frontend.sh | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/deploy/build-frontend.sh b/deploy/build-frontend.sh index 52d7c6ecd0..1d8f4430bc 100755 --- a/deploy/build-frontend.sh +++ b/deploy/build-frontend.sh @@ -8,7 +8,15 @@ mkdir -p ./cloudbeaver/web cd ../../cloudbeaver/webapp yarn install --immutable -cd ./packages/product-default +yarn clear + +cd common-react +yarn clear + +cd ../common-typescript +yarn clear + +cd ../packages/product-default yarn run bundle if [[ "$?" -ne 0 ]] ; then