Package Exports
- @comet-cli/parser-open-api
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@comet-cli/parser-open-api) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
@comet-cli/parser-open-api
This package contains the implementation of an OpenAPI v3 parser.
Usage
import OpenApiParser from '@comet-cli/parser-open-api';
async function main() {
const parser = new OpenApiParser();
const spec = await parser.execute('api.yaml');
}