-
Notifications
You must be signed in to change notification settings - Fork 12
Description
I currently have a project that I'm trying to turn into an EXE that uses Bun's native SQLite driver and Drizzle ORM. Building the project results in an error at the end of the build script:
error during build:
undefined
error: script "build" exited with code 1
However, the generated EXE otherwise works fine. I'm concerned that there might actually be an error during the build process that I'm just not encountering because of the nature of the app I'm making. I mention that I'm using Bun SQLite and Drizzle ORM because they might be causing the problem, but I can't be sure.
This happens even on the SvelteKit minimal template made with sv create, which I've recreated here (note that some of the scripts have been adjusted to force Vite to use Bun; otherwise, it still calls Node when running the app, causing errors when trying to import bun:sqlite).