@hey-api/codegen-core#
0.7.4#
Patch Changes#
0.7.3#
Patch Changes#
Updated Dependencies:#
- @hey-api/types@0.1.4
0.7.2#
Patch Changes#
0.7.1#
Patch Changes#
0.7.0#
Minor Changes#
- BREAKING: symbol: replace
exportFromarray withgetExportFromFilePath()function (#3322) (bfd43ec) by @mrlubos
Updated Symbol interface#
The exportFrom property has been replaced with the getExportFromFilePath() function. This allows you to dynamically determine export paths based on symbol properties. This is a low-level feature, so you're most likely unaffected.
0.6.1#
Patch Changes#
- planner: fix duplicate import when same symbol is imported as both type and value (#3291) (
3c08e38) by @copilot-swe-agent
0.6.0#
Minor Changes#
Removed CommonJS (CJS) support#
@hey-api/codegen-core is now ESM-only. This change simplifies the codebase, improves tree-shaking, and enables better integration with modern bundlers and TypeScript tooling.
CommonJS entry points (require(), module.exports) are no longer supported. If you are in a CJS environment, you can still load the package dynamically using import() like:
const { Project } = await import("@hey-api/codegen-core");
If you have previously written:
const { Project } = require("@hey-api/codegen-core");
Migrate by updating your static imports:
import { Project } from "@hey-api/codegen-core";
If your environment cannot use ESM, pin to a previous version.
Patch Changes#
Updated Dependencies:#
- @hey-api/types@0.1.3
0.5.5#
Patch Changes#
- config: export
loadConfigFilefunction (moved from@hey-api/openapi-ts) (#3244) (4f52bce) by @mrlubos
Updated Dependencies:#
- @hey-api/types@0.1.2
0.5.4#
Patch Changes#
0.5.3#
Patch Changes#
0.5.2#
Patch Changes#
- build: do not minify bundles for better code readability and debugging (#3186) (
4d46130) by @copilot-swe-agent
0.5.1#
Patch Changes#
0.5.0#
Minor Changes#
Patch Changes#
-
types: document default values for
importKindandkind(#3147) (ab80a4b) by @mrlubos -
fix: simplify symbol merging logic (#3169) (
77bf81a) by @mrlubos
0.4.0#
Minor Changes#
0.3.3#
Patch Changes#
0.3.2#
Patch Changes#
0.3.1#
Patch Changes#
0.3.0#
Minor Changes#
0.2.0#
Minor Changes#
0.1.0#
Minor Changes#
0.0.1#
Patch Changes#
- feat: initial release