Daniel Steigerwald
Daniel Steigerwald
Tailwind has such a plugin: https://tailwindcss.com/blog/automatic-class-sorting-with-prettier. Is it a good idea to have something similar for StyleX? 🤔
### Verified issue does not already exist? - [X] I have searched and found no existing issue ### What happened? Here https://github.com/actualbudget/actual/blob/master/packages/loot-core/src/server/crdt/merkle.ts#L17 I don't think there is a reason why...
This: ```js if (typeof window === 'undefined') { throw Error('Chat should only render on the client.'); } ``` Should be this: ```js if (typeof document === 'undefined') { throw Error('Chat...
### Is there an existing request? - [X] I have searched for this request ### Describe the feature request I read the source code, and I understand why it's there....
It could be interesting for someone, so I'm leaving the link here. https://github.com/evoluhq/evolu
This is something that any IndexedDB user will have to sooner or later consider: https://hacks.mozilla.org/2014/06/breaking-the-borders-of-indexeddb/
Do you plan it or should userland send a PR? I know the company which maybe will desperately need it.
### Describe the feature request Setting up https://github.com/changesets/changesets is easy, and it would allow more frequent releases, I suppose.
For example, that's what I have in Evolu. Note `EvoluLive(schema)` vs `ReactLive`. The Layer is like a constructor without a `new`, if I understand it properly. Hence PascalCase. Am I...
https://www.effect.website/docs/guide/context-management/layers Add an example for generic services.