@kubb/core
Version:
Core functionality for Kubb's plugin-based code generation system, providing the foundation for transforming OpenAPI specifications.
12 lines (9 loc) • 329 B
text/typescript
export { clean } from './clean.ts'
export { read, readSync } from './read.ts'
export { write } from './write.ts'
export { exists } from './exists.ts'
export { getRelativePath } from './utils.ts'
export function trimExtName(text: string): string {
return text.replace(/\.[^/.]+$/, '')
}
export * as KubbFile from './types.ts'