Anthony G
Anthony G
@mikearnaldi, quoted from the [slack channel](https://functionalprogramming.slack.com/archives/C013V389ZS9/p1594223546166500?thread_ts=1593813957.165700&cid=C013V389ZS9) (link to join [here](https://fpchat-invite.herokuapp.com) - channel `#morphic`): > BASTJ and ESBASTJ are the initials of the interpreters that are baked in: > E =...
Oh ok - my mistake. I think it could also be ok to copy/paste the `Option` interface by the same rationale, esp since that seems unlikely to change, but I...
I think this is a great idea! Here's my attempt. It's not ideal - a value-level keys must be passed in (unless we used something like [ts-transformer-keys](https://github.com/kimamula/ts-transformer-keys)). It's not pretty,...
> [Re: building both a type and a value with the same function] I'm unsure of how to persist generics when using `typeof`, since all types need to be resolved...
[practical-fp/union-types](https://github.com/practical-fp/union-types) has a clever solution to this problem using a Proxy object
I'd just like to mention that the current [soft delete middleware docs](https://www.prisma.io/docs/concepts/components/prisma-client/middleware/soft-delete-middleware#option-2-use-middleware-to-determine-the-behavior-of-readupdate-queries-for-deleted-records) recommend replacing `update` actions with `updateMany`, but fail to point out that this will cause `update`'s return type...
seems related to this issue in eslint-import-resolver-typescript: https://github.com/import-js/eslint-import-resolver-typescript/issues/431#issuecomment-2811859850 This worked for me, as a temporary fix: ``` pnpm i --save-dev @unrs/resolver-binding-wasm32-wasi ```
aha OK I understand - it's only meant to be a subset of typescript features, for now maybe this is separate ticket, but it would be nice if the parser...
Here's a little script to solve this problem, written by [gburtini](https://gist.github.com/gburtini) - [github gist](https://gist.github.com/anthonyjoeseph/6b99beb34d494acd1dfc83a192ed9388) if you run it with `FORCE_FIX=true`: - if you are mid-merge, it will intelligently keep "theirs"...
@gburtini pointed out to me that using the `--name` flag obviates the need for a CI step Use it - `drizzle-kit generate --name migration` - to eliminate randomness, and generate...