Jakub Riedl

Results 12 comments of Jakub Riedl

Hi, I love this (and actually need this). Can I help you with finishing this?

For now I've workaround this by using Node API and custom script to merge the files before writing ```ts #!/usr/bin/env node import { extract as extractMessagesAsString } from "@formatjs/cli-lib" import...

Yes this work and is sufficient for us now, but would be great if formatjs had a way how to specify keys that should be kept in the codebase. Ideally...

One option I can think of could be make `js-cookie` as optional require (like below) and publish `useCookieValue` in the index ``` let jsCookie try { jsCookie = require('js-cookie') }...

all other hooks that are imported directly from index work for us, its just `useCookieValue`. What kind of error would users experience if it would be exported in index and...

I've recently come across [exports field in package.json](https://nodejs.org/api/packages.html#exports) which might be the way how to solve that.

Was switching JS libraries and found out that all other (js implementations) are returning reversed order. Don't know what is correct way. But had to do small inversion function to...

Great to see some traction for this so we can clean up the code. From our experience, the most valuable would be the mentioned `Vary` and `Age`. And also it...

Thanks @yannbf for your great work, I've tested the canary release in our (quite big) setup and it seems to work great. Is there something I can help with to...

We're having the same issue when using GridList in combination with Jotai. Interestingly while the GridList is originally rendered inside Suspense boundary, the jotai atom update is client only and...