Nicolas Keil

Results 5 comments of Nicolas Keil

Also waiting on this to be realeased. In the meantime, you can use this in your `package.json` to use the ESM update: ```json "dependencies": { "redlock": "git+https://github.com/mike-marcacci/node-redlock.git" } ```

After playing around with some different solutions for the monorepo implementation, I also found this to be the cleanest way to make it work.

Unfortunate to see this not supported, but seems like it's being worked on here: https://github.com/vitejs/vite/issues/8993

I'm reconsidering this somewhat as I'm not sure if there's a clean way to do it.

Getting the same issue. Temporary workaround: ```ts const out = Bun.file('out.txt'); await out.exists(); await Bun.write(out, await Bun.file('in.txt').text()); ```