Baptiste Clarey Sjöstrand

Results 9 comments of Baptiste Clarey Sjöstrand

Hi, Same here on a Macbook pro Mid 2014 (Intel) and MacOS Big Sur 11.7.10. This is specific to Bun v1.0.21, it works well on v1.0.20: ```shell bun add v1.0.21...

Other thread on the same issue there: https://discord.com/channels/876711213126520882/1192197434827345930/1192233818220924948 @Jarred-Sumner

Check my link on Discord, you can set an environment variable in front of “bun install” On Tue, Jan 9, 2024 at 12:59 杨老汉儿 ***@***.***> wrote: > Is there any...

BUN_DISABLE_COMPRESSION_FRAMEWORK=1 bun install On Tue, Jan 9, 2024 at 13:13 Baptiste Clarey Sjöstrand < ***@***.***> wrote: > Check my link on Discord, you can set an environment variable in front...

FYI Bun version: 1.0.25 ```shell $ bun create react-ssr warn: incorrect peer dependency "[email protected]" warn: incorrect peer dependency "[email protected]" error: process.binding("fs") is not implemented in Bun. Track the status &...

> FYI > > Bun version: 1.0.25 > > ```shell > $ bun create react-ssr warn: incorrect peer dependency "[email protected]" > warn: incorrect peer dependency "[email protected]" > error: process.binding("fs") is...

Hello, ```jsx // @ts-ignore process.on('beforeExit', () => console.log('beforeExit')); // @ts-ignore process.on('exit', () => console.log('exit')); // without ts-ignore, we get "Property 'on' does not exist on type 'Process'.ts(2339)" ``` None of...

Thank you @maxmilton! I confirm, this is working: ```jsx process.on("SIGINT", () => { console.log('EXIT'); process.exit(0); }); ```

Not sure if these issues are related: https://github.com/Mozilla-Ocho/llamafile/issues/100 https://github.com/Mozilla-Ocho/llamafile/issues/356