From e9f66f680701988285b36fac4df16827185b94c1 Mon Sep 17 00:00:00 2001 From: Carlos Santos <4a.santos@gmail.com> Date: Wed, 14 May 2025 15:59:13 +0200 Subject: [PATCH] prepare.sh: add testapp build step to preparation script --- prepare.sh | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/prepare.sh b/prepare.sh index 3ba534d..9cd1cab 100755 --- a/prepare.sh +++ b/prepare.sh @@ -24,4 +24,10 @@ cd .. cd frontend/webcomponent npm install npm run build -cd ../.. \ No newline at end of file +cd ../.. + +# Build testapp +cd testapp +npm install +npm run build +cd .. \ No newline at end of file