unplugin-kubb 0.1.90 → 0.1.91
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/esbuild.d.cts +2 -2
- package/dist/esbuild.d.ts +2 -2
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/package.json +6 -6
package/dist/esbuild.d.cts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import * as
|
|
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) =>
|
|
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
|
|
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) =>
|
|
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
|
|
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:
|
|
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
|
|
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:
|
|
7
|
+
declare const unplugin: _unplugin.UnpluginInstance<Options | undefined, boolean>;
|
|
8
8
|
|
|
9
9
|
export { unplugin as default, unplugin, unpluginFactory };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "unplugin-kubb",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.91",
|
|
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.28.
|
|
101
|
+
"@kubb/core": "2.28.2"
|
|
102
102
|
},
|
|
103
103
|
"peerDependenciesMeta": {
|
|
104
104
|
"webpack": {
|
|
@@ -134,10 +134,10 @@
|
|
|
134
134
|
"vite": "^5.4.8",
|
|
135
135
|
"vitest": "^1.6.0",
|
|
136
136
|
"webpack": "^5.95.0",
|
|
137
|
-
"@kubb/config-biome": "2.28.
|
|
138
|
-
"@kubb/config-ts": "2.28.
|
|
139
|
-
"@kubb/config-tsup": "2.28.
|
|
140
|
-
"@kubb/core": "2.28.
|
|
137
|
+
"@kubb/config-biome": "2.28.2",
|
|
138
|
+
"@kubb/config-ts": "2.28.2",
|
|
139
|
+
"@kubb/config-tsup": "2.28.2",
|
|
140
|
+
"@kubb/core": "2.28.2"
|
|
141
141
|
},
|
|
142
142
|
"engines": {
|
|
143
143
|
"node": ">=18"
|