Martin Broos

Results 15 comments of Martin Broos

To use the new api but still support older browsers i'm using this implementation. But might be good to add this to copy-to-clipboard. ``` async onClick() { try { await...

I think the reason there is no generated es6 is because when babel-preset is not found it's adding a config which has no key with `bugfixes = true` Compare: https://github.com/prateekbh/babel-esm-plugin/blob/master/src/babel-utils.js#L37...

@prateekbh see pr: https://github.com/prateekbh/babel-esm-plugin/pull/44 Still not sure how I can make the plugin also check babel.config.js for existing options. I think what we want is that it only sets the...

@prateekbh I'm still thinking about how we could make this work with the various ways to configure babel. Do you know if it's possible to expose a variable inside the...

I think there are two reasons why we need to check for config files at the moment: 1. If there is no babel-loader targets option is found the plugin will...

Thanks for this. Would be nice if this could be released.

After some more research it looks like it only get's slow in firefox when mapping over transitions / trails inside the render function. For example my app uses 2 useTransitions...

When looking at the Goo Blob demo it renders pretty fast when making your window small but using it on fullscreen or retina display it get's slow. In my app...

I'm using webpack 5 with react-pdf 6.1.1 but the build breaks because I don't have file-loader installed. For all other assets I use the new asset loader from webpack. Is...

Ah i see I was using `entry.webpack` instead of `entry.webpack5` . Thanks all working now :)