Alex Nault

Results 20 comments of Alex Nault

Hi @drewpc! This is how react-headings used to be, in version [`2.x`](https://github.com/alexnault/react-headings/tree/v2.1.4). And unfortunately, this solution came with its downsides... 1. It was very easy to miss a heading, and...

We are also facing the same issue with Vite in dev (esbuild). I think an ESM export would be the best way forward too.

Duplicate of https://github.com/dozoisch/react-google-recaptcha/issues/129

@LansPeti next-auth is coming to create-t3-turbo! https://github.com/t3-oss/create-t3-turbo/pull/36

next-auth is coming to create-t3-turbo https://github.com/t3-oss/create-t3-turbo/pull/36

Hey @charkour! Thanks a lot! I think it's a good idea. I'll add a "Moving to classix" section in the readme. I don't have experience with writing codemods though. I...

@charkour I've created this [PR](https://github.com/alexnault/classix/pull/32) for the migration instructions. Let me know what you think!

I'm leaving the issue open for a potential codemod :)

I can also attest: MeetingBar went from ~760MB to ~16MB of memory usage after upgrading from 4.0.5 to 4.0.6. Thank you @leits!

For `upsert` to work with a partial index, I had to use `conflictWhere` (see: https://github.com/sequelize/sequelize/pull/13411) : ```js Model.upsert({ conversationId: 'my-id', name: 'My conversation', }, { conflictFields: ['conversationId'], conflictWhere: { deletedAt:...