You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use the following index.ts and package.json files and run
bun build --compile --sourcemap ./index.ts --outfile executable && ./executable
index.ts
import{PGlite}from"@electric-sql/pglite";constdb=newPGlite();awaitdb.waitReady;constresult=awaitdb.query("select 'Hello world' as message;");console.log(result);awaitdb.close();
What versions are running ?
What steps can reproduce the bug ?
Use the following index.ts and package.json files and run
bun build --compile --sourcemap ./index.ts --outfile executable && ./executable
index.ts
package.json
What is the expected behavior ?
The process runs successfully.
What do you see instead ?
The process fails with error
The text was updated successfully, but these errors were encountered: