I have a spec that uses multiple tags, e.g.
...
/api/example/foo:
post:
operationId: createFooExample
tags:
- exampleService
- foo
...
When I run this tool (openapi-to-k6 clients/bundled.yml clients/k6 --mode=tags --include-sample-script --verbose) it generates references to non-existent files.
k6-script.sample.ts:
...
import { ExampleServiceClient } from "./example-service.ts"
import { FooClient } from "./foo.ts"
...
example-service.ts has been generated and does exist, but foo.ts does not exist.