@kubb/fabric-core 0.14.0 → 0.15.1

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/plugins.d.ts CHANGED
@@ -116,5 +116,5 @@ type Options = {
116
116
  };
117
117
  declare const loggerPlugin: Plugin<Options, {}>;
118
118
  //#endregion
119
- export { barrelPlugin, definePlugin, fsPlugin, fsxPlugin, loggerPlugin };
119
+ export { type Plugin, barrelPlugin, definePlugin, fsPlugin, fsxPlugin, loggerPlugin };
120
120
  //# sourceMappingURL=plugins.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kubb/fabric-core",
3
- "version": "0.14.0",
3
+ "version": "0.15.1",
4
4
  "description": "Core functionality for Kubb's fabric - A language-agnostic toolkit providing the foundation for plugin-based code generation with TypeScript support",
5
5
  "keywords": [
6
6
  "codegen",
@@ -3,3 +3,4 @@ export { definePlugin } from './definePlugin.ts'
3
3
  export { fsPlugin } from './fsPlugin.ts'
4
4
  export { fsxPlugin } from './fsxPlugin/fsxPlugin.ts'
5
5
  export { loggerPlugin } from './loggerPlugin.ts'
6
+ export type { Plugin } from './types.ts'