Justin Chase

Results 185 comments of Justin Chase

That's an interesting data point but even if you never called clearInterval, when the parent process closes this is supposed to be closed regardless of whether you handle SIGTERM or...

@alexanderby > Installing all that tools, containing python etc. and doing OS specific tricks seems strange for mainstream web development toolchain. I think so too but I suspect there will...

Does the `sharp.metadata()` function read the entire stream into memory or will a followup resize operation currently result in a re-read of the entire stream? I am currently using something...

It might work if you add a require in the vm code: ```ts const code = `require('node-ts/register');require('vm.ts')` const vm = require('vm') const s = new vm.Script(code) ``` ```ts // vm.ts...

You would need to ensure it is installed as a dependency but it shouldn't matter if the main process is pre-compiled or not.

I came here to ask for this same thing :)

Do you need a registry/username/password if you're not going to push? Also just a recommendation but maybe: ```yaml mode: 'build' # or 'build_and_push' (default) ```

The minified code at the point of the error is reported has the following code: ```js (function(){return window&&document&&document.all&&!window.atob}) ``` Its failing at that first reference to `window`, and is very...

Merged with the other PR that broke out the change to the tests. Also, you probably don't need to wait for the node "unref" response since, even if they agree...

@SimenB I'll give it a go.