Joseph Price
Joseph Price
Yes, luckily it results in a hard error that prevents the script from executing, but having a compile time error benefits library development as well to find unsupported usages without...
Oddly, if I pass `no_badge`, the color shows up.
This seems to be some compat issue with the underlying imagemagick binding library. I was using imagemagick installed via nix, and it seems it was silently failing. After removing it...
Great I'll watch that talk. I've written a Myriad plugin that I'm using to generate 10s of thousands of lines of encoders/decoders, and hit this when I started trying to...
I hit this same issue and it was the approve-builds command that caused it, but then I get `NotFoundError: Not Found`. Looks like this path `res.sendFile(path.join(path.dirname(fileURLToPath(import.meta.url)), '../app/index.html'));` is not resolving.
This can be fixed by resolving using root `res.sendFile('index.html', {root: path.join(path.dirname(fileURLToPath(import.meta.url)), '../app/')});`, but the umd modules are not found due to https://github.com/reduxjs/redux-devtools/issues/1931.
Maybe you could use two appiconsets, check the files in, and use `copy_artifacts` to copy the original image to "reset" them before applying the latest badge. You have to check...
I tried this out and it works, but for objects with additional properties, the inference hits this issue https://github.com/colinhacks/zod/issues/2938, where `passthrough` causes zod types like`z.ZodOptional` and `z.objectOutputType` to not be...
I found the commit that limits inlining of string constants to those less than a length of 100. Which makes sense, since the above code works in versions before 4.0.4...
If I increase the limit from 100 to 200, it does work as expected, so I think it's a case like the following With an inline definition like ```fsharp static...