Ramon Brullo
Ramon Brullo
This issue is fixed in the 5.0 version of assimp, where a FilePath property does exist on EmbeddedTextures and TextureSlots always contain the filepath instead of a *-path. Still, for...
Hey, will fix. Seems like Rider creates md files with this BOM by default. Maybe skipping any leading BOM characters would be a good idea when displaying the readme, just...
Most markdown renderers, like the regular Github one or the one in Rider handle this case by ignoring the character, it seems
The fix for this could be to search the upstream if no good version was found in the primary registry, correct?
That is also a possibility. I'll take a look.
The naive fix for this is to walk back package versions from the latest until a version is found that works for the current editor-version. This could involve a lot...
That's true, I did not think of that. I will look into this.
This issue is one of the main reasons I stopped using zod. If valibot could get it done that would be really neat.
@fabian-hiller Sure. In my case I have an existing external type like this: ```ts type Maintainer = { name?: string, url?: string, email?: string } ``` I also have `exactOptionalPropertyTypes`...
Here is the workaround code I now use in `zod` in case anyone is interested. I'm sure it can be adapted to `valibot` too. ```ts type RemoveExplicitUndefined = T extends...