Jan Amann

Results 436 comments of Jan Amann

@davidkpiano I'll ping you once it's ready. I think it'll likely be around Christmas though, I don't have much time to work on it currently. I just joined the Slack...

Thanks for your quick response! I've created a `babel-loader` branch based on your feedback in my repo: https://github.com/amannn/webpack-top-level-await/tree/babel-loader > It is invalid syntax, you can't use await in export Is...

Thanks for the pointer! I've created an initial PR with a failing test (https://github.com/webpack/webpack/pull/11881), but I'm struggling a bit to understand how I can wrap the whole module consumption in...

I'm really not sure how 🙂. It looks like with `AwaitDependenciesInitFragment` I can add a line before the module exports are consumed, but how can I wrap the whole consumption?...

Thanks for the quick reply! Oh, you're right – that's indeed an issue. Hmm, I think your proposed solution would work, but as you mentioned this could decrease performance a...

Thank you for this interesting library! Personally I'm largely in favour of the `className={css(…)}` API if there are no performance downsides. I recently [commented on the emotion repository about this](https://github.com/emotion-js/emotion/issues/1877#issue-623033579)....

So you mean something like this? ```js function A() { return ; } function B({className}) { return B; } ``` Now the `css` function from `B` receives the object and...

Thank you for the feedback and I'm incredibly grateful for your sponsorship! ❤️❤️❤️ I really like your idea with CodeSandbox, as it could lower the barrier to try out the...

The example in this repo already has such a switch: https://github.com/amannn/next-intl/blob/1571b78688fa2735011b2170e7811e83fd574204/packages/example/src/components/Navigation.tsx#L21-L23 Is it maybe too subtle or is it rather the problem that the example has to be built locally?

Thanks for the hint @Haschikeks! I've just set up a PR to unify the lodash imports (https://github.com/amannn/next-intl/pull/82). The usage of `getServerSideProps` is intentional: https://github.com/amannn/next-intl/blob/ac5b83eb64e6d52bd7706480119e0d6541d5552e/packages/example-advanced/src/pages/about.tsx#L33-L36