switching from yarn to pnpm

This commit is contained in:
fkwp
2026-04-17 11:07:31 +02:00
parent 5657036f2f
commit 17ad20cd09
11 changed files with 17535 additions and 16777 deletions

View File

@@ -1,10 +1,10 @@
#!/bin/sh
if [ -n "$USE_DOCKER" ]; then
set -ex
yarn build
pnpm build
docker build -t element-call:testing .
exec docker run --rm --name element-call-testing -p 8080:8080 -v ./config/config.devenv.json:/app/config.json:ro,Z element-call:testing
else
cp config/config.devenv.json public/config.json
exec yarn dev
exec pnpm dev
fi