Michael Rochester

Results 9 comments of Michael Rochester
trafficstars

This is actually an issue in Bash. using `$ minify hello.js > hello.js` Bash will first execute the file redirect, prepare hello.js for writing by wiping it. Then it will...

I think rather than just taking "" as default. This case could be an Error("No content found in the file") This will make it easier to add file type detection...

> Would be amazing if you use [yargs-parser](https://www.npmjs.com/package/yargs-parser) for this purpose and move all logic to `lib/cli.js` and add tests with one assertion per test in file `lib/cli.spec.js`, and it...

So Folks. > I'm getting data but it isn't every hour for some reason... got 1-3 hours of gaps in between. I like you all applied @dgibbs64 fix to get...

Closing as CLA not signed after one month

Once #365 is merged a release will be made

The blocks in the diff heavily implies this is an image compression algorithm problem. If these images are being scaled down by the browser, and it is doing so with...

This bug can commonly occur when using `Promise.all` over api calls of different speeds. E.G. ``` async function wrappedFetch(url) { const response = fetch(url); const text = await response.clone().text(); //...

FYI, Removing the chained `res.clone().text()` did _not_ solve this for us. Our race condition still exists, and one of the two bodies still almost always throws the 'Body has already...