Angius
Angius
I did manage to hack together this bit ```cs public class IncludeInternalApisProcessor : IOperationProcessor { public bool Process(OperationProcessorContext context) { return context.ControllerType.FullName?.ToUpper().Contains("ADMIN") ?? false; } } ``` and ```cs services.AddOpenApiDocument(settings...
~~Ah, of course, it still brings all the schemas with it, even those that aren't used by the filtered APIs... because why not. I guess there's some separate schema filter...
```cs services.AddOpenApiDocument(settings => { settings.SchemaNameGenerator = new NSwagNestedNameGenerator(); }); services.AddOpenApiDocument(settings => { settings.DocumentName = "internal"; settings.OperationProcessors.Insert(0, new IncludeInternalApisProcessor()); settings.SchemaNameGenerator = new NSwagNestedNameGenerator(); }); ```
Same with Nuxt 3, killing the server also allows for installing the package.
Seeing the same issue on Windows with Bun ``` ❯ bunx unlighthouse --debug ⚙ Starting Unlighthouse at root: F:\VS Projects\Ogma3\Ogma3 cwd: F:\VS Projects\Ogma3\Ogma3 Unlighthouse 10:58:50 ⚙ Discovered config definition {...
I'm seeing the same issue 
Yeah, seems to be nice and fixed now
Seems my issue is caused by ESBuild, then, since it doesn't respect `importHelpers` (https://github.com/evanw/esbuild/issues/1230). I'll have to evaluate just switching to plain `tsc`. ESBuild has this issue, Bun has no...
Current solution: I added the ability to pass Babel options to my [`@atulin/bun-plugin-solid`](https://jsr.io/@atulin/bun-plugin-solid) fork. The code below works just fine: ```ts import { SolidPlugin } from "@atulin/bun-plugin-solid"; import solidLabels from...
Found an issue with this approach: the only way I could get types supported in Rider, was by creating a `types/solid-ext.d.ts` file with `import "solid-labels";` in it. That makes all...