@kubb/fabric-core 0.2.2 → 0.2.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/types.d.cts CHANGED
@@ -1,3 +1,3 @@
1
- import { n as FabricContext, p as KubbFile_d_exports, r as FabricMode, t as Fabric } from "./Fabric-CCPgegwe.cjs";
1
+ import { n as FabricContext, p as KubbFile_d_exports, r as FabricMode } from "./Fabric-CCPgegwe.cjs";
2
2
  import { r as DefineFabric } from "./index-BUculP1D.cjs";
3
- export { type DefineFabric, type Fabric, type FabricContext, type FabricMode, KubbFile_d_exports as KubbFile };
3
+ export { type DefineFabric, type FabricContext, type FabricMode, KubbFile_d_exports as KubbFile };
package/dist/types.d.ts CHANGED
@@ -1,3 +1,3 @@
1
- import { n as FabricContext, p as KubbFile_d_exports, r as FabricMode, t as Fabric } from "./Fabric-Cu_YHe4S.js";
1
+ import { n as FabricContext, p as KubbFile_d_exports, r as FabricMode } from "./Fabric-Cu_YHe4S.js";
2
2
  import { r as DefineFabric } from "./index-CvkyZHXK.js";
3
- export { type DefineFabric, type Fabric, type FabricContext, type FabricMode, KubbFile_d_exports as KubbFile };
3
+ export { type DefineFabric, type FabricContext, type FabricMode, KubbFile_d_exports as KubbFile };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kubb/fabric-core",
3
- "version": "0.2.2",
3
+ "version": "0.2.4",
4
4
  "description": "Core functionality for Kubb's plugin-based code generation system, providing the foundation for transforming OpenAPI specifications.",
5
5
  "keywords": [
6
6
  "typescript",
@@ -84,7 +84,7 @@
84
84
  "@types/fs-extra": "^11.0.4",
85
85
  "@types/serve-handler": "^6.1.4",
86
86
  "remeda": "^2.32.0",
87
- "tsdown": "^0.15.10",
87
+ "tsdown": "^0.15.11",
88
88
  "typescript": "^5.9.3"
89
89
  },
90
90
  "engines": {
package/src/index.ts CHANGED
@@ -3,4 +3,5 @@ export { defineFabric } from './defineFabric.ts'
3
3
  export { FileManager } from './FileManager.ts'
4
4
  export { createFile } from './createFile.ts'
5
5
  export { FileProcessor } from './FileProcessor.ts'
6
+ // we need this to override the globals of `fabric.use`
6
7
  export type { Fabric } from './Fabric.ts'
package/src/types.ts CHANGED
@@ -1,3 +1,3 @@
1
1
  export * as KubbFile from './KubbFile.ts'
2
2
  export type { DefineFabric } from './defineFabric.ts'
3
- export type { FabricContext, Fabric, FabricMode } from './Fabric.ts'
3
+ export type { FabricContext, FabricMode } from './Fabric.ts'