Greg W

Results 24 comments of Greg W

My vote is for 2 or 5. Flatness wins to me, otherwise we'd never see async/await.

One thing pointed out in that issue is with env variables, which I've ran into playing with prisma2 is that docker postgres & prisma2 would use different env variables. This...

@michaelmitchell I ran across this after having implemented my own solution independently, albeit yours seems a little nicer, since it works off the `photon.dmmf`, which I didn't know about, but...

Here's another example of it failing and it also failing with userEvent.type, https://codesandbox.io/s/happy-dom-onchange-791uvl?file=/src/App.test.tsx and is also a reproduction of #467

> Note a workaround is to use fireEvent.input instead of userEvent.type This isn't per se a workaround. This requires changing the event handler to onInput from onChange, which aren't the...

What specific details are you looking for? File count? Grunt config?

Gruntfile ``` js module.exports = function (grunt) { var path = require('path'); // Loads the task which will time each other task require('time-grunt')(grunt); // Loads configurations from a sub-folder require('load-grunt-config')(grunt,...

Config for grunt-parallelize was tried with ``` js options: { processes: 2 //also tried 4 and 8 } ``` ESLint that I'm using is a fork of https://github.com/airbnb/javascript/blob/master/packages/eslint-config-airbnb/base/index.js with jsx...

Seriously, at this point maybe this pr should become the official version.

Here's derive using async/await https://codesandbox.io/s/derive-with-promises-yx2fkq?file=/src/App.js and here's subscribe using async/await https://codesandbox.io/s/subscribe-with-promises-7pokmq I think the key difference is that `watch` is the only function that allows for an explicit cleanup function...