Tomáš Čarnecký

Results 23 comments of Tomáš Čarnecký

Ah lol. That whole paragraph is outdated though, since 25b74a5023da avers uses `Proxy` instead of `Object.observe`.

There are many elements on the webpage which are animated using CSS animations, even though they are not visible. For example the loading indicator (which is completely covered by the...

Actually, the loading indicator and the invisible rotating circle inside the URL input box are the only two elements which cause the high CPU usage.

Do I really have to do it for each request? Can't I call `addGlobalEventProcessor` just after `Sentry.init()` ?

Couldn't get it to work with the global event processor, but this appears to work (uses the same means to add the event processor as the code in withSentry, getCurrentHub().currentScope().addEventProcessor()):...

@stefanhoth can we get this PR merged and released? Thanks…

The benefit is being able to reliably import this package from a ES module. When Node.js runs in ESM mode (eg. type:package or file has a .mjs extension) then the...

It makes it less specific to Node.js and more compatible with other runtimes (eg. Deno, Web/Cloudflare Workers etc). The other dependency that's specific to Node.js is fetch, but that API...

It seems as if tag [0.7.0](https://www.npmjs.com/package/use-immer/v/0.7.0) includes the change but the tag itself not available on github. Did you forget to push it?

I'm facing a similar issue where a function has multiple signatures, one of which is deprecated and even if I use the new calling convention I get a warning. ```typescript...