Finish full migration to Drizzle

This commit is contained in:
Jesse Wierzbinski 2024-04-13 15:26:19 -10:00
parent 0ca77e9dcc
commit b1ee6e5684
No known key found for this signature in database
7 changed files with 5 additions and 43 deletions

View file

@ -32,6 +32,9 @@ await Bun.build({
// I apologize for this
await $`sed -i 's|import("node_modules/|import("./node_modules/|g' dist/*.js`;
// Copy Drizzle migrations to dist
await $`cp -r drizzle dist/drizzle`;
// Copy Sharp to dist
await $`mkdir -p dist/node_modules/@img`;
await $`cp -r node_modules/@img/sharp-libvips-linux-* dist/node_modules/@img`;