David Edmondson
David Edmondson
Could use jsdoc's `@type`. I'd be a little concerned about piggybacking on existing tags - would there be cases that work now, but would break with something like this? (I...
`localStorage` is unavailable (with thrown errors!) from Safari private browsing mode, so safety or a fallback of some kind would be needed.
I briefly looked into this for my company, but naming collisions are a little too common when mixing in libraries. If you enable `import/no-default-export` that ensures that you get the...
Not a problem, I've been following the new branch and can send an updated PR once that's done.
Until https://github.com/microsoft/TypeScript/issues/13195 lands - which is an opt-in, very large breaking change - a union like `"TOGGLE" | undefined` is effectively the same as a missing one (with some subtleties)....
Would you take a PR for this? Over at [work](https://www.truecar.com/) we've just introduced xstate, but are now looking for a smaller state machine library with better TypeScript inference. The only...
Turns out we're not using nested states at all - we're invoking other machines and waiting on the results. I think that's already possible without any changes (thanks, React!) but...
Webpack issue: https://github.com/webpack/webpack/issues/7516
Both react-universal-component and webpack-hot-server-middleware can work with Webpack 4. However, this issue can get in the way: https://github.com/webpack/webpack/issues/7516 The "serverRenderer is not a function" error happens most often because the...
I have a non-minimal repro case for this error, though under completely different circumstances, here: https://github.com/threehams/barrys-time-adventures-nx/tree/nextjs-perf-bug Windows 10 Node 16.9.1 npm 7.21.1 Requires `npm install --legacy-peer-deps`, which is likely part...