Migrate to pnpm

Introduces bugs
This commit is contained in:
Luke Vella 2024-10-16 13:31:24 +01:00
parent 9af5b696c8
commit 0c5e36f7ae
No known key found for this signature in database
GPG key ID: 469CAD687F0D784C
36 changed files with 19518 additions and 18405 deletions

4
scripts/landing.sh Executable file
View file

@ -0,0 +1,4 @@
#!/bin/sh
set -e
pnpm prisma generate
pnpm build

View file

@ -1,6 +1,6 @@
#!/bin/sh
set -e
yarn prisma generate
yarn build
pnpm prisma generate
pnpm build
# Deploy migration using direct database connection (no connection pool)
DATABASE_URL=$DIRECT_DATABASE_URL yarn db:deploy
DATABASE_URL=$DIRECT_DATABASE_URL pnpm db:deploy