Jason Marshall

Results 294 comments of Jason Marshall

I forgot to say, I took my error: 15:18:54.400 [warning] The on_load function for module Elixir.Exqlite.Sqlite3NIF returned: {:error, {:upgrade, ~c"Upgrade not supported by this NIF library."}} to the SQLite3 people...

So you have it working with otp 28 now?

Apologies, I managed to destroy my dev setup by trying to upgrade asdf and only just got a clean Erlang reinstall this morning. I will circle back on this as...

FWIW, I can't get run or test to work on Erlang 27 at all in Webstorm. I had to go back to 26.latest to get over a bunch of obscure...

I'm trying to use a library that depends on calendar and I'm running into this problem.

require('./foo.mjs') also does not honor cache invalidation. Anyone have a workaround? I'm trying to migrate a module to ESM while providing backward compat and this is breaking tests.

The bun documentation claims it supports ts files natively. https://github.com/oven-sh/bun/blob/main/docs/runtime/typescript.md @akefirad is talking about: https://github.com/node-config/node-config/blob/4d7fac6104a7e984557894e7edf2077890509c6a/parser.js#L71 Node 23 supports ts Node 22: > require.extensions [Object: null prototype] { '.js': [Function (anonymous)],...

Simplest solution if you know you're working in Bun might be to `require.extensions['.ts'] = true`

https://github.com/oven-sh/bun/pull/18478

The linked bun ticket is now marked as closed, fixed.