Johannes Loher
Johannes Loher
Hey, bumping again. Now that maintenance has been handed over to Nrwl, are there any plans to add proper support for npm workspaces? I think not much would actually need...
It seems like a straight forward improvement to me. The lack of feedback is most likely just due to the fact that lerna is largely unmaintained at this point (see...
Apparently, the bug in mongodb has been fixed with version 4.9.0
I would appreciate something like `fromResultPromise` quite a bit. We often have `async` functions that return `Promise`. It's not easy to make the return a `ResultAsync` directly instead, because TypeScript...
I've made good experiences with using std.mmfile together with dxml. I’ve written a tool that processes a full Wikipedia export (70 GB) this way, and it worked quite well. https://github.com/ghost91-/wikipedia-indexer/tree/master
The example you have given [_does_ pass type checks](https://www.typescriptlang.org/play?ts=5.2.2#code/JYWwDg9gTgLgBAbzhA1gGjgZwIYDMCmAKlAJ5wC+cuUEIcA5AHb4Bu+sAFjQO70DcAKAEBjCI0zwo+TAFcANvAC8WPEVIAeJDBJh8ALjgAiXBAiGKGGYxSMI3RgD4AFLivCYwMQCo4TgJSIAnDBcFIwMlCMyChOWjr6RiZmFH6C5KkCQA) for me. Maybe it depends on the version of TypeScript that's being used? EDIT: I just checked, _all_ of the examples...
What’s the point of the additional signature? If you want to make it work with `PromiseLike`, why not just implement it for `PromiseLike` (which is a super type of `Promise`,...
Fully agree with @CertainlyAria
For reference, this is what I'm using for now: ```ts declare module 'react-map-interaction' { type Translation = { x: number; y: number; }; export type MapInteractionProps = { children?: ({...
I'm also not sure what the issue is here. Does `this.repository.getEntityManager().flush()` _always_ throw? If so, I would expect that your `flush` function also throws, either whatever is thrown by the...