Christoph Werner

Results 89 comments of Christoph Werner

Not taking `partials` and `errors` into account, i was thinking about something along these lines (using [discriminated unions](https://basarat.gitbooks.io/typescript/docs/types/discriminated-unions.html), simplified example): ```typescript interface QueryHookStateLoading { data: undefined loading: true error: undefined...

@YutaUra Transaction rollback feature of `@quramy/jest-prisma` does not work with MySQL as MySQL doesn't allow sending `SAVEPOINT` queries as prepared statements and everything prisma allows is sending exactly those.

@koskimas Is there a way to achieve individual test cases running in transactions? This would have to support nested transactions in case the business logic that's being tested has transactions...

@johnthagen @Bosch-Eli-Black @RSeidelsohn @brebory @zrosenbauer As the author of [`webpack-license-plugin`](https://www.npmjs.com/package/webpack-license-plugin) and someone responsible for JavaScript ecosystem OSS license compliance in a larger company, I would love to hear more about...

> @codepunkt We use a fork of `license-checker` to generate a static license report of all NPM dependencies to include with the built frontend to comply with OSS licenses requirements....

I've seen all those example fiddles before as i've browsed through existing issues. Neither of them seem to solve to my problem. The plugin doesn't do what it is supposed...

The live servers don't have the latest LTS. Stackblitz and other platforms are amazing for providing error reproductions - but whenever these error reproductions are connected to specific Node.js versions,...

Same here. Luckily scrypt is in `node:crypto`, but Argon2Id isn't 👀