unplugin-kubb 0.1.59 → 0.1.60

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.
@@ -1,7 +1,7 @@
1
- import * as unplugin from 'unplugin';
1
+ import * as esbuild from 'esbuild';
2
2
  import { Options } from './types.cjs';
3
3
  import '@kubb/core';
4
4
 
5
- declare const _default: (options?: Options | undefined) => unplugin.EsbuildPlugin;
5
+ declare const _default: (options?: Options | undefined) => esbuild.Plugin;
6
6
 
7
7
  export { _default as default };
package/dist/esbuild.d.ts CHANGED
@@ -1,7 +1,7 @@
1
- import * as unplugin from 'unplugin';
1
+ import * as esbuild from 'esbuild';
2
2
  import { Options } from './types.js';
3
3
  import '@kubb/core';
4
4
 
5
- declare const _default: (options?: Options | undefined) => unplugin.EsbuildPlugin;
5
+ declare const _default: (options?: Options | undefined) => esbuild.Plugin;
6
6
 
7
7
  export { _default as default };
package/dist/index.d.cts CHANGED
@@ -1,9 +1,9 @@
1
- import * as unplugin$1 from 'unplugin';
1
+ import * as _unplugin from 'unplugin';
2
2
  import { UnpluginFactory } from 'unplugin';
3
3
  import { Options } from './types.cjs';
4
4
  import '@kubb/core';
5
5
 
6
6
  declare const unpluginFactory: UnpluginFactory<Options | undefined>;
7
- declare const unplugin: unplugin$1.UnpluginInstance<Options | undefined, boolean>;
7
+ declare const unplugin: _unplugin.UnpluginInstance<Options | undefined, boolean>;
8
8
 
9
9
  export { unplugin as default, unplugin, unpluginFactory };
package/dist/index.d.ts CHANGED
@@ -1,9 +1,9 @@
1
- import * as unplugin$1 from 'unplugin';
1
+ import * as _unplugin from 'unplugin';
2
2
  import { UnpluginFactory } from 'unplugin';
3
3
  import { Options } from './types.js';
4
4
  import '@kubb/core';
5
5
 
6
6
  declare const unpluginFactory: UnpluginFactory<Options | undefined>;
7
- declare const unplugin: unplugin$1.UnpluginInstance<Options | undefined, boolean>;
7
+ declare const unplugin: _unplugin.UnpluginInstance<Options | undefined, boolean>;
8
8
 
9
9
  export { unplugin as default, unplugin, unpluginFactory };
@@ -1,7 +1,8 @@
1
+ import { UnpluginFactoryOutput } from 'unplugin';
1
2
  import { WebpackPluginInstance } from 'webpack';
2
3
  import { Options } from './types.cjs';
3
4
  import '@kubb/core';
4
5
 
5
- declare const _default: (options: Options) => WebpackPluginInstance;
6
+ declare const _default: UnpluginFactoryOutput<Options, WebpackPluginInstance>;
6
7
 
7
8
  export { _default as default };
package/dist/webpack.d.ts CHANGED
@@ -1,7 +1,8 @@
1
+ import { UnpluginFactoryOutput } from 'unplugin';
1
2
  import { WebpackPluginInstance } from 'webpack';
2
3
  import { Options } from './types.js';
3
4
  import '@kubb/core';
4
5
 
5
- declare const _default: (options: Options) => WebpackPluginInstance;
6
+ declare const _default: UnpluginFactoryOutput<Options, WebpackPluginInstance>;
6
7
 
7
8
  export { _default as default };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "unplugin-kubb",
3
- "version": "0.1.59",
3
+ "version": "0.1.60",
4
4
  "description": "Unplugin for Kubb",
5
5
  "keywords": [
6
6
  "unplugin",
@@ -98,7 +98,7 @@
98
98
  "rollup": "^3",
99
99
  "vite": ">=3",
100
100
  "webpack": "^4 || ^5",
101
- "@kubb/core": "2.20.0"
101
+ "@kubb/core": "2.21.0"
102
102
  },
103
103
  "peerDependenciesMeta": {
104
104
  "webpack": {
@@ -126,18 +126,18 @@
126
126
  "devDependencies": {
127
127
  "@nuxt/kit": "^3.12.2",
128
128
  "@nuxt/schema": "^3.12.2",
129
- "@types/node": "^20.14.5",
129
+ "@types/node": "^20.14.7",
130
130
  "rimraf": "^5.0.7",
131
131
  "rollup": "^4.18.0",
132
132
  "tsup": "^8.1.0",
133
- "typescript": "^5.4.5",
133
+ "typescript": "^5.5.2",
134
134
  "vite": "^5.3.1",
135
135
  "vitest": "^1.6.0",
136
- "webpack": "^5.92.0",
137
- "@kubb/config-biome": "2.20.0",
138
- "@kubb/config-ts": "2.20.0",
139
- "@kubb/config-tsup": "2.20.0",
140
- "@kubb/core": "2.20.0"
136
+ "webpack": "^5.92.1",
137
+ "@kubb/config-biome": "2.21.0",
138
+ "@kubb/config-ts": "2.21.0",
139
+ "@kubb/config-tsup": "2.21.0",
140
+ "@kubb/core": "2.21.0"
141
141
  },
142
142
  "engines": {
143
143
  "node": ">=18"