Neale Upstone

Results 47 comments of Neale Upstone

If you only require random numbers to be polyfilled, then you can also do ``` var nodeCrypto = require('crypto'); global.crypto = { getRandomValues: function(buffer: T) { return nodeCrypto.randomFillSync(buffer);} }; ```...

Agree. A good measure would be to capture what Runners (such as Unitils and Spring ones) are just doing before class/before test combos, and ensure those can be converted to...

Hi, I've updated to 1.7, and the same bug seems to still be there: ``` The following request caused an error to be thrown: {"endpoint":"language","method":"getCompletionsAtPosition","arguments":["ecco-offline","eclipse:/ecco-offline/src/main/resources/com/ecco/offline/staticFiles/scripts/evidence/tabular/SmartStepControl.ts",8437]} TypeError: Cannot read property 'parent'...

Hi, Is the issue here simply that you don't haven't specified ? ``` localstack: stages: - local ``` so the plugin isn't active? I've just spent some time scratching my...

If you want to use typescript 3.4 with gulp-typescript on composite builds, then you can trick typescript into not tripping up by explicitly setting tsBuildInfoFile: ``` "tsBuildInfoFile": "./buildcache/tsBuildInfo", ``` I...

@mzyil You won't be able to get that until this issue is resolve which [depends on API support](https://github.com/ivogabe/gulp-typescript/issues/611#issuecomment-480143257). We're using tsc --build for our developer build and then gulp-typescript for...

From what I understand, there's more to it than this because if you don't set up any branches, `semantic-release` assumes `master`. I think it's time main were assumed in preference...

Our workaround has worked. We've removed 2 of the 3 by updating to versions that add to `devDependencies` instead of using `npx` which proves out the parallel issue.

package.json says MIT. That's good enough for me.

Hi @dtao, If you get a look at this, perhaps consider renaming for NPM as having .js in the package name causes issues in webpack. Perhaps going down the route...