prepare.sh: add testapp build step to preparation script

This commit is contained in:
Carlos Santos 2025-05-14 15:59:13 +02:00
parent 85985274ed
commit e9f66f6807

View File

@ -24,4 +24,10 @@ cd ..
cd frontend/webcomponent
npm install
npm run build
cd ../..
cd ../..
# Build testapp
cd testapp
npm install
npm run build
cd ..