101arrowz

Results 76 comments of 101arrowz

While we're at it, it would be nice to have access to `projectRoot`, `packageRoot`, and other currently Parcel-internal properties too.

Thanks for taking the time to diagnose the issue here! This looks like a good change, I'll make it for the next release.

Sorry that work on this has been slow; I tend to make changes in batches. I don't think this is a huge or difficult change, but it is a big...

The last time I tried something like this `fflate` just decompresses up to the end of the DEFLATE stream and no further, meaning it wouldn't provide an EOF error at...

You can just call `stream.flush()` to flush the stream. ```js const stream = new fflate.Deflate((chunk, final) => { /* handle stream chunks here */ }); stream.push(data); stream.flush(); ```

You are correct, this is not currently possible with `fflate`. The fix should be relatively simple, I'll look into it for the next version.

Thank you for the PR! Overall looks mostly good, bar some stylistic decisions, but I'll do a more thorough review when I get a chance. Unfortunately life has kept me...

This is an interesting bug. It seems like a bug in Deno rather than `fflate` if I'm being honest, but I'll have a look. The reason you're seeing the 150kB...

This is probably expected behavior given differences in the algorithm implementation between Pako and `fflate`. You are right that 6% is larger than usual though, it's worth looking into why...

I'm a huge fan of AS, and this will definitely make using it more painless. However, I have a few concerns with this PR so far: - It's not necessary...