Devon Govett

Results 468 comments of Devon Govett

Sure, it may be slower in the absolute sense than threads. I'm more interested in whether it still slows down as much after 4 process workers as it does with...

I'm curious if you've tried setting the `UV_THREADPOOL_SIZE` environment variable. This adjusts the libuv (node) thread pool size which is what handles disk IO. By default it's 4. Is it...

@aminya have you looked into why disk access on your machine is so slow? I don't think anyone else has been able to reproduce the cssnano issue. Are you running...

Sure, I agree re require being slow. But there still exists the question why it takes 3s on your machine and milliseconds on other machines so trying to get to...

Yeah it should be per target and possibly only supported with the "global" (iife) output format, and not commonjs or ESM. Since you can output multiple targets in Parcel 2,...

Hey thanks for working on this. I think the big question is how we release it since MDX v2 has breaking syntax changes. We would also prefer not to bump...

Hmm, looks like there is an implementation of that in the polyfill [here](https://github.com/inexorabletash/text-encoding/blob/master/lib/encoding.js#L1158). The algorithm that is specified looks like it would be kinda slow though. Might want to write...

How about just using normal JS arrays if typed arrays aren't available? Or we could just skip the typed arrays entirely. The encoder doesn't really know how big to make...

This would be really useful to allow reusing behavior between multiple components, similar to React Hooks. For example, I'd like to try to port [React Aria](https://react-spectrum.adobe.com/react-aria/useButton.html) to Svelte. These hooks...

Ooh nice. Thanks for the super quick responses. Heading to sleep now but will try in the morning! 😊