Dave Irvine

Results 16 comments of Dave Irvine

We will switch this on for the 0.9 milestone.

Ok so I guess the easiest "fix" here would be to consider anything inside quotes to be literal.

Its a little odd, because in JS: ``` > true+1 < 2 ``` so we have the concept of adding Numbers to booleans (although this seems insane to me but...

I believe in this case you need to tell `esbuild` to `external` the `@jest/globals` module.

I'm having the same issue, but with 1.32.5 which should include https://github.com/floydspace/serverless-esbuild/pull/337 At the time `getBuildOptions()` runs, `this.outputWorkFolder` and `this.outputBuildFolder` are undefined, so this line https://github.com/floydspace/serverless-esbuild/blob/master/src/index.ts#L245 puts `undefined` into the...

If you are using node 12 or above, you can use https://github.com/gajus/global-agent by setting an environment variable: ```sh export GLOBAL_AGENT_HTTP_PROXY=http://corp.proxy:8080 ``` Code sample: ```js require('global-agent/bootstrap'); const Proxy = require('http-mitm-proxy'); const...