From 37cbe12c4d9f8b14d596b25fe320f82b3f8c5438 Mon Sep 17 00:00:00 2001 From: Jesse Wierzbinski Date: Wed, 30 Apr 2025 21:26:35 +0200 Subject: [PATCH] fix: :bug: Copy detect-libc inside node_modules --- build.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build.ts b/build.ts index eb31f94b..80993bac 100644 --- a/build.ts +++ b/build.ts @@ -59,4 +59,7 @@ await $`cp beemovie.txt dist/beemovie.txt`; // Copy package.json await $`cp package.json dist/package.json`; +// Fixes issues with sharp +await $`cp -rL node_modules/detect-libc dist/node_modules/`; + buildSpinner.stop();