@kubb/core 4.11.3 → 4.12.0
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/fs-DhLl4-lT.cjs +177 -0
- package/dist/fs-DhLl4-lT.cjs.map +1 -0
- package/dist/fs-ph1OdgEr.js +108 -0
- package/dist/fs-ph1OdgEr.js.map +1 -0
- package/dist/fs.cjs +8 -0
- package/dist/fs.d.cts +21 -0
- package/dist/fs.d.ts +21 -0
- package/dist/fs.js +3 -0
- package/dist/{getBarrelFiles-ZIHk_1ln.d.ts → getBarrelFiles-BEWbZEZf.d.ts} +3 -6
- package/dist/{getBarrelFiles-8VEWWk9Z.cjs → getBarrelFiles-BcgToi50.cjs} +71 -62
- package/dist/getBarrelFiles-BcgToi50.cjs.map +1 -0
- package/dist/{getBarrelFiles-DQ0hksqD.js → getBarrelFiles-ClyWjO0d.js} +65 -55
- package/dist/getBarrelFiles-ClyWjO0d.js.map +1 -0
- package/dist/{getBarrelFiles-B_2WDywH.d.cts → getBarrelFiles-LW3anr-E.d.cts} +3 -6
- package/dist/hooks.cjs +1 -1
- package/dist/hooks.d.cts +1 -1
- package/dist/hooks.d.ts +1 -1
- package/dist/index.cjs +68 -212
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +8 -9
- package/dist/index.d.ts +8 -9
- package/dist/index.js +61 -204
- package/dist/index.js.map +1 -1
- package/dist/{transformers-B-zCAPV-.cjs → transformers-BqQRkrxy.cjs} +2 -2
- package/dist/{transformers-B-zCAPV-.cjs.map → transformers-BqQRkrxy.cjs.map} +1 -1
- package/dist/{transformers-CjdbeLAK.js → transformers-C481fXH-.js} +1 -1
- package/dist/{transformers-CjdbeLAK.js.map → transformers-C481fXH-.js.map} +1 -1
- package/dist/transformers.cjs +2 -2
- package/dist/transformers.js +1 -1
- package/dist/{types-DgfEZ3IN.d.ts → types-DZARm27h.d.ts} +253 -46
- package/dist/{types-CCEy_FVr.d.cts → types-icDNKrIP.d.cts} +253 -46
- package/dist/utils.cjs +6 -5
- package/dist/utils.d.cts +3 -3
- package/dist/utils.d.ts +3 -3
- package/dist/utils.js +3 -3
- package/package.json +10 -17
- package/src/BarrelManager.ts +3 -18
- package/src/Kubb.ts +249 -0
- package/src/PluginManager.ts +42 -73
- package/src/build.ts +38 -138
- package/src/defineLogger.ts +7 -0
- package/src/index.ts +2 -1
- package/src/types.ts +35 -2
- package/src/utils/getBarrelFiles.ts +7 -10
- package/src/utils/index.ts +1 -0
- package/dist/EventEmitter-BwU6Ixxt.cjs +0 -31
- package/dist/EventEmitter-BwU6Ixxt.cjs.map +0 -1
- package/dist/EventEmitter-DlzW04T3.js +0 -25
- package/dist/EventEmitter-DlzW04T3.js.map +0 -1
- package/dist/chunk-CbDLau6x.cjs +0 -34
- package/dist/getBarrelFiles-8VEWWk9Z.cjs.map +0 -1
- package/dist/getBarrelFiles-DQ0hksqD.js.map +0 -1
- package/dist/logger-CQn6sdC0.js +0 -1152
- package/dist/logger-CQn6sdC0.js.map +0 -1
- package/dist/logger-US5g7KdM.cjs +0 -1187
- package/dist/logger-US5g7KdM.cjs.map +0 -1
- package/dist/logger-mq06Cxxv.d.cts +0 -94
- package/dist/logger-o16AyvGp.d.ts +0 -94
- package/dist/logger.cjs +0 -6
- package/dist/logger.d.cts +0 -2
- package/dist/logger.d.ts +0 -2
- package/dist/logger.js +0 -3
- package/dist/prompt-CWSscQpj.cjs +0 -852
- package/dist/prompt-CWSscQpj.cjs.map +0 -1
- package/dist/prompt-Dt0jyRBe.js +0 -848
- package/dist/prompt-Dt0jyRBe.js.map +0 -1
- package/src/logger.ts +0 -236
- package/src/utils/ciDetection.ts +0 -40
|
@@ -1,39 +1,20 @@
|
|
|
1
|
-
import { n as Logger, o as EventEmitter } from "./logger-o16AyvGp.js";
|
|
2
1
|
import { Fabric } from "@kubb/react-fabric";
|
|
3
2
|
import { KubbFile } from "@kubb/fabric-core/types";
|
|
4
3
|
|
|
4
|
+
//#region src/utils/AsyncEventEmitter.d.ts
|
|
5
|
+
declare class AsyncEventEmitter<TEvents extends Record<string, any>> {
|
|
6
|
+
#private;
|
|
7
|
+
constructor(maxListener?: number);
|
|
8
|
+
emit<TEventName extends keyof TEvents & string>(eventName: TEventName, ...eventArgs: TEvents[TEventName]): Promise<void>;
|
|
9
|
+
on<TEventName extends keyof TEvents & string>(eventName: TEventName, handler: (...eventArg: TEvents[TEventName]) => void): void;
|
|
10
|
+
onOnce<TEventName extends keyof TEvents & string>(eventName: TEventName, handler: (...eventArgs: TEvents[TEventName]) => void): void;
|
|
11
|
+
off<TEventName extends keyof TEvents & string>(eventName: TEventName, handler: (...eventArg: TEvents[TEventName]) => void): void;
|
|
12
|
+
removeAll(): void;
|
|
13
|
+
}
|
|
14
|
+
//#endregion
|
|
5
15
|
//#region src/PluginManager.d.ts
|
|
6
16
|
type RequiredPluginLifecycle = Required<PluginLifecycle>;
|
|
7
17
|
type Strategy = 'hookFirst' | 'hookForPlugin' | 'hookParallel' | 'hookSeq';
|
|
8
|
-
type ExecutingMeta<H extends PluginLifecycleHooks = PluginLifecycleHooks> = {
|
|
9
|
-
strategy: Strategy;
|
|
10
|
-
hookName: H;
|
|
11
|
-
plugin: Plugin;
|
|
12
|
-
parameters?: unknown[] | undefined;
|
|
13
|
-
output?: unknown;
|
|
14
|
-
};
|
|
15
|
-
type ExecutedMeta<H extends PluginLifecycleHooks = PluginLifecycleHooks> = {
|
|
16
|
-
duration: number;
|
|
17
|
-
strategy: Strategy;
|
|
18
|
-
hookName: H;
|
|
19
|
-
plugin: Plugin;
|
|
20
|
-
parameters?: unknown[] | undefined;
|
|
21
|
-
output?: unknown;
|
|
22
|
-
};
|
|
23
|
-
type ErrorMeta<H extends PluginLifecycleHooks = PluginLifecycleHooks> = {
|
|
24
|
-
hookName: H;
|
|
25
|
-
duration: number;
|
|
26
|
-
strategy: Strategy;
|
|
27
|
-
parameters?: unknown[] | undefined;
|
|
28
|
-
plugin: Plugin;
|
|
29
|
-
};
|
|
30
|
-
type ProgressStartMeta<H extends PluginLifecycleHooks = PluginLifecycleHooks> = {
|
|
31
|
-
hookName: H;
|
|
32
|
-
plugins: Array<Plugin>;
|
|
33
|
-
};
|
|
34
|
-
type ProgressStopMeta<H extends PluginLifecycleHooks = PluginLifecycleHooks> = {
|
|
35
|
-
hookName: H;
|
|
36
|
-
};
|
|
37
18
|
type ParseResult<H extends PluginLifecycleHooks> = RequiredPluginLifecycle[H];
|
|
38
19
|
type SafeParseResult<H extends PluginLifecycleHooks, Result = ReturnType<ParseResult<H>>> = {
|
|
39
20
|
result: Result;
|
|
@@ -41,19 +22,12 @@ type SafeParseResult<H extends PluginLifecycleHooks, Result = ReturnType<ParseRe
|
|
|
41
22
|
};
|
|
42
23
|
type Options = {
|
|
43
24
|
fabric: Fabric;
|
|
44
|
-
|
|
25
|
+
events: AsyncEventEmitter<KubbEvents>;
|
|
45
26
|
/**
|
|
46
27
|
* @default Number.POSITIVE_INFINITY
|
|
47
28
|
*/
|
|
48
29
|
concurrency?: number;
|
|
49
30
|
};
|
|
50
|
-
type Events = {
|
|
51
|
-
progress_start: [meta: ProgressStartMeta];
|
|
52
|
-
progress_stop: [meta: ProgressStopMeta];
|
|
53
|
-
executing: [meta: ExecutingMeta];
|
|
54
|
-
executed: [meta: ExecutedMeta];
|
|
55
|
-
error: [error: Error, meta: ErrorMeta];
|
|
56
|
-
};
|
|
57
31
|
type GetFileProps<TOptions = object> = {
|
|
58
32
|
name: string;
|
|
59
33
|
mode?: KubbFile.Mode;
|
|
@@ -64,10 +38,10 @@ type GetFileProps<TOptions = object> = {
|
|
|
64
38
|
declare function getMode(fileOrFolder: string | undefined | null): KubbFile.Mode;
|
|
65
39
|
declare class PluginManager {
|
|
66
40
|
#private;
|
|
67
|
-
readonly events: EventEmitter<Events>;
|
|
68
41
|
readonly config: Config;
|
|
69
42
|
readonly options: Options;
|
|
70
43
|
constructor(config: Config, options: Options);
|
|
44
|
+
get events(): AsyncEventEmitter<KubbEvents>;
|
|
71
45
|
getContext<TOptions extends PluginFactoryOptions>(plugin: Plugin<TOptions>): PluginContext<TOptions> & Record<string, any>;
|
|
72
46
|
get plugins(): Array<Plugin>;
|
|
73
47
|
getFile<TOptions = object>({
|
|
@@ -81,10 +55,6 @@ declare class PluginManager {
|
|
|
81
55
|
}>;
|
|
82
56
|
resolvePath: <TOptions = object>(params: ResolvePathParams<TOptions>) => KubbFile.Path;
|
|
83
57
|
resolveName: (params: ResolveNameParams) => string;
|
|
84
|
-
/**
|
|
85
|
-
* Instead of calling `pluginManager.events.on` you can use `pluginManager.on`. This one also has better types.
|
|
86
|
-
*/
|
|
87
|
-
on<TEventName extends keyof Events & string>(eventName: TEventName, handler: (...eventArg: Events[TEventName]) => void): void;
|
|
88
58
|
/**
|
|
89
59
|
* Run a specific hookName for plugin x.
|
|
90
60
|
*/
|
|
@@ -157,6 +127,219 @@ declare class PluginManager {
|
|
|
157
127
|
getPluginsByKey(hookName: keyof PluginWithLifeCycle, pluginKey: Plugin['key']): Plugin[];
|
|
158
128
|
}
|
|
159
129
|
//#endregion
|
|
130
|
+
//#region src/Kubb.d.ts
|
|
131
|
+
type DebugEvent = {
|
|
132
|
+
date: Date;
|
|
133
|
+
logs: string[];
|
|
134
|
+
fileName?: string;
|
|
135
|
+
};
|
|
136
|
+
type ProgressStartMeta<H extends PluginLifecycleHooks = PluginLifecycleHooks> = {
|
|
137
|
+
hookName: H;
|
|
138
|
+
plugins: Array<Plugin>;
|
|
139
|
+
};
|
|
140
|
+
type ProgressStopMeta<H extends PluginLifecycleHooks = PluginLifecycleHooks> = {
|
|
141
|
+
hookName: H;
|
|
142
|
+
};
|
|
143
|
+
type ExecutingMeta<H extends PluginLifecycleHooks = PluginLifecycleHooks> = {
|
|
144
|
+
strategy: Strategy;
|
|
145
|
+
hookName: H;
|
|
146
|
+
plugin: Plugin;
|
|
147
|
+
parameters?: unknown[] | undefined;
|
|
148
|
+
output?: unknown;
|
|
149
|
+
};
|
|
150
|
+
type ExecutedMeta<H extends PluginLifecycleHooks = PluginLifecycleHooks> = {
|
|
151
|
+
duration: number;
|
|
152
|
+
strategy: Strategy;
|
|
153
|
+
hookName: H;
|
|
154
|
+
plugin: Plugin;
|
|
155
|
+
parameters?: unknown[] | undefined;
|
|
156
|
+
output?: unknown;
|
|
157
|
+
};
|
|
158
|
+
/**
|
|
159
|
+
* Events emitted during the Kubb code generation lifecycle.
|
|
160
|
+
* These events can be listened to for logging, progress tracking, and custom integrations.
|
|
161
|
+
*
|
|
162
|
+
* @example
|
|
163
|
+
* ```typescript
|
|
164
|
+
* import type { AsyncEventEmitter } from '@kubb/core'
|
|
165
|
+
* import type { KubbEvents } from '@kubb/core'
|
|
166
|
+
*
|
|
167
|
+
* const events: AsyncEventEmitter<KubbEvents> = new AsyncEventEmitter()
|
|
168
|
+
*
|
|
169
|
+
* events.on('lifecycle:start', () => {
|
|
170
|
+
* console.log('Starting Kubb generation')
|
|
171
|
+
* })
|
|
172
|
+
*
|
|
173
|
+
* events.on('plugin:end', (plugin, duration) => {
|
|
174
|
+
* console.log(`Plugin ${plugin.name} completed in ${duration}ms`)
|
|
175
|
+
* })
|
|
176
|
+
* ```
|
|
177
|
+
*/
|
|
178
|
+
interface KubbEvents {
|
|
179
|
+
/**
|
|
180
|
+
* Emitted at the beginning of the Kubb lifecycle, before any code generation starts.
|
|
181
|
+
*/
|
|
182
|
+
'lifecycle:start': [version: string];
|
|
183
|
+
/**
|
|
184
|
+
* Emitted at the end of the Kubb lifecycle, after all code generation is complete.
|
|
185
|
+
*/
|
|
186
|
+
'lifecycle:end': [];
|
|
187
|
+
/**
|
|
188
|
+
* Emitted when configuration loading starts.
|
|
189
|
+
*/
|
|
190
|
+
'config:start': [];
|
|
191
|
+
/**
|
|
192
|
+
* Emitted when configuration loading is complete.
|
|
193
|
+
*/
|
|
194
|
+
'config:end': [configs: Array<Config>];
|
|
195
|
+
/**
|
|
196
|
+
* Emitted when code generation phase starts.
|
|
197
|
+
*/
|
|
198
|
+
'generation:start': [config: Config];
|
|
199
|
+
/**
|
|
200
|
+
* Emitted when code generation phase completes.
|
|
201
|
+
*/
|
|
202
|
+
'generation:end': [Config: Config];
|
|
203
|
+
/**
|
|
204
|
+
* Emitted with a summary of the generation results.
|
|
205
|
+
* Contains summary lines, title, and success status.
|
|
206
|
+
*/
|
|
207
|
+
'generation:summary': [Config: Config, {
|
|
208
|
+
failedPlugins: Set<{
|
|
209
|
+
plugin: Plugin;
|
|
210
|
+
error: Error;
|
|
211
|
+
}>;
|
|
212
|
+
status: 'success' | 'failed';
|
|
213
|
+
hrStart: [number, number];
|
|
214
|
+
filesCreated: number;
|
|
215
|
+
pluginTimings?: Map<string, number>;
|
|
216
|
+
}];
|
|
217
|
+
/**
|
|
218
|
+
* Emitted when code formatting starts (e.g., running Biome or Prettier).
|
|
219
|
+
*/
|
|
220
|
+
'format:start': [];
|
|
221
|
+
/**
|
|
222
|
+
* Emitted when code formatting completes.
|
|
223
|
+
*/
|
|
224
|
+
'format:end': [];
|
|
225
|
+
/**
|
|
226
|
+
* Emitted when linting starts.
|
|
227
|
+
*/
|
|
228
|
+
'lint:start': [];
|
|
229
|
+
/**
|
|
230
|
+
* Emitted when linting completes.
|
|
231
|
+
*/
|
|
232
|
+
'lint:end': [];
|
|
233
|
+
/**
|
|
234
|
+
* Emitted when plugin hooks execution starts.
|
|
235
|
+
*/
|
|
236
|
+
'hooks:start': [];
|
|
237
|
+
/**
|
|
238
|
+
* Emitted when plugin hooks execution completes.
|
|
239
|
+
*/
|
|
240
|
+
'hooks:end': [];
|
|
241
|
+
/**
|
|
242
|
+
* Emitted when a single hook execution starts.
|
|
243
|
+
*/
|
|
244
|
+
'hook:start': [command: string];
|
|
245
|
+
/**
|
|
246
|
+
* Emitted to execute a hook command (e.g., format or lint).
|
|
247
|
+
* The callback should be invoked when the command completes.
|
|
248
|
+
*/
|
|
249
|
+
'hook:execute': [{
|
|
250
|
+
command: string | URL;
|
|
251
|
+
args?: readonly string[];
|
|
252
|
+
}, cb: () => void];
|
|
253
|
+
/**
|
|
254
|
+
* Emitted when a single hook execution completes.
|
|
255
|
+
*/
|
|
256
|
+
'hook:end': [command: string];
|
|
257
|
+
/**
|
|
258
|
+
* Emitted when a new version of Kubb is available.
|
|
259
|
+
*/
|
|
260
|
+
'version:new': [currentVersion: string, latestVersion: string];
|
|
261
|
+
/**
|
|
262
|
+
* Informational message event.
|
|
263
|
+
*/
|
|
264
|
+
info: [message: string, info?: string];
|
|
265
|
+
/**
|
|
266
|
+
* Error event. Emitted when an error occurs during code generation.
|
|
267
|
+
*/
|
|
268
|
+
error: [error: Error, meta?: Record<string, unknown>];
|
|
269
|
+
/**
|
|
270
|
+
* Success message event.
|
|
271
|
+
*/
|
|
272
|
+
success: [message: string, info?: string];
|
|
273
|
+
/**
|
|
274
|
+
* Warning message event.
|
|
275
|
+
*/
|
|
276
|
+
warn: [message: string, info?: string];
|
|
277
|
+
/**
|
|
278
|
+
* Debug event for detailed logging.
|
|
279
|
+
* Contains timestamp, log messages, and optional filename.
|
|
280
|
+
*/
|
|
281
|
+
debug: [meta: DebugEvent];
|
|
282
|
+
/**
|
|
283
|
+
* Emitted when file processing starts.
|
|
284
|
+
* Contains the list of files to be processed.
|
|
285
|
+
*/
|
|
286
|
+
'files:processing:start': [files: Array<KubbFile.ResolvedFile>];
|
|
287
|
+
/**
|
|
288
|
+
* Emitted for each file being processed, providing progress updates.
|
|
289
|
+
* Contains processed count, total count, percentage, and file details.
|
|
290
|
+
*/
|
|
291
|
+
'file:processing:update': [{
|
|
292
|
+
/** Number of files processed so far */
|
|
293
|
+
processed: number;
|
|
294
|
+
/** Total number of files to process */
|
|
295
|
+
total: number;
|
|
296
|
+
/** Processing percentage (0-100) */
|
|
297
|
+
percentage: number;
|
|
298
|
+
/** Optional source identifier */
|
|
299
|
+
source?: string;
|
|
300
|
+
/** The file being processed */
|
|
301
|
+
file: KubbFile.ResolvedFile;
|
|
302
|
+
/**
|
|
303
|
+
* Kubb configuration (not present in Fabric).
|
|
304
|
+
* Provides access to the current config during file processing.
|
|
305
|
+
*/
|
|
306
|
+
config: Config;
|
|
307
|
+
}];
|
|
308
|
+
/**
|
|
309
|
+
* Emitted when file processing completes.
|
|
310
|
+
* Contains the list of processed files.
|
|
311
|
+
*/
|
|
312
|
+
'files:processing:end': [files: KubbFile.ResolvedFile[]];
|
|
313
|
+
/**
|
|
314
|
+
* Emitted when a plugin starts executing.
|
|
315
|
+
*/
|
|
316
|
+
'plugin:start': [plugin: Plugin];
|
|
317
|
+
/**
|
|
318
|
+
* Emitted when a plugin completes execution.
|
|
319
|
+
*/
|
|
320
|
+
'plugin:end': [plugin: Plugin, duration: number];
|
|
321
|
+
/**
|
|
322
|
+
* Emitted when plugin hook progress tracking starts.
|
|
323
|
+
* Contains the hook name and list of plugins to execute.
|
|
324
|
+
*/
|
|
325
|
+
'plugins:hook:progress:start': [meta: ProgressStartMeta];
|
|
326
|
+
/**
|
|
327
|
+
* Emitted when plugin hook progress tracking ends.
|
|
328
|
+
* Contains the hook name that completed.
|
|
329
|
+
*/
|
|
330
|
+
'plugins:hook:progress:end': [meta: ProgressStopMeta];
|
|
331
|
+
/**
|
|
332
|
+
* Emitted when a plugin hook starts processing.
|
|
333
|
+
* Contains strategy, hook name, plugin, parameters, and output.
|
|
334
|
+
*/
|
|
335
|
+
'plugins:hook:processing:start': [meta: ExecutingMeta];
|
|
336
|
+
/**
|
|
337
|
+
* Emitted when a plugin hook completes processing.
|
|
338
|
+
* Contains duration, strategy, hook name, plugin, parameters, and output.
|
|
339
|
+
*/
|
|
340
|
+
'plugins:hook:processing:end': [meta: ExecutedMeta];
|
|
341
|
+
}
|
|
342
|
+
//#endregion
|
|
160
343
|
//#region src/utils/types.d.ts
|
|
161
344
|
type PossiblePromise<T> = Promise<T> | T;
|
|
162
345
|
//#endregion
|
|
@@ -431,7 +614,7 @@ type PluginContext<TOptions extends PluginFactoryOptions = PluginFactoryOptions>
|
|
|
431
614
|
* merging multiple sources into the same output file
|
|
432
615
|
*/
|
|
433
616
|
upsertFile: (...file: Array<KubbFile.File>) => Promise<void>;
|
|
434
|
-
|
|
617
|
+
events: AsyncEventEmitter<KubbEvents>;
|
|
435
618
|
mode: KubbFile.Mode;
|
|
436
619
|
/**
|
|
437
620
|
* Current plugin
|
|
@@ -473,6 +656,30 @@ type Group = {
|
|
|
473
656
|
*/
|
|
474
657
|
name?: (context: GroupContext) => string;
|
|
475
658
|
};
|
|
659
|
+
declare const LogLevel: {
|
|
660
|
+
readonly silent: number;
|
|
661
|
+
readonly error: 0;
|
|
662
|
+
readonly warn: 1;
|
|
663
|
+
readonly info: 3;
|
|
664
|
+
readonly verbose: 4;
|
|
665
|
+
readonly debug: 5;
|
|
666
|
+
};
|
|
667
|
+
type LoggerOptions = {
|
|
668
|
+
/**
|
|
669
|
+
* @default 3
|
|
670
|
+
*/
|
|
671
|
+
logLevel: (typeof LogLevel)[keyof typeof LogLevel];
|
|
672
|
+
};
|
|
673
|
+
/**
|
|
674
|
+
* Shared context passed to all plugins, parsers, and Fabric internals.
|
|
675
|
+
*/
|
|
676
|
+
interface LoggerContext extends AsyncEventEmitter<KubbEvents> {}
|
|
677
|
+
type Install<TOptions = unknown> = (context: LoggerContext, options?: TOptions) => void | Promise<void>;
|
|
678
|
+
type Logger<TOptions extends LoggerOptions = LoggerOptions> = {
|
|
679
|
+
name: string;
|
|
680
|
+
install: Install<TOptions>;
|
|
681
|
+
};
|
|
682
|
+
type UserLogger<TOptions extends LoggerOptions = LoggerOptions> = Omit<Logger<TOptions>, 'logLevel'>;
|
|
476
683
|
//#endregion
|
|
477
|
-
export {
|
|
478
|
-
//# sourceMappingURL=types-
|
|
684
|
+
export { AsyncEventEmitter as A, UserLogger as C, KubbEvents as D, PossiblePromise as E, PluginManager as O, UserConfig as S, UserPluginWithLifeCycle as T, PluginLifecycleHooks as _, InputData as a, ResolveNameParams as b, Logger as c, Output as d, Plugin as f, PluginLifecycle as g, PluginKey as h, Group as i, getMode as k, LoggerContext as l, PluginFactoryOptions as m, Config as n, InputPath as o, PluginContext as p, GetPluginFactoryOptions as r, LogLevel as s, BarrelType as t, LoggerOptions as u, PluginParameter as v, UserPlugin as w, ResolvePathParams as x, PluginWithLifeCycle as y };
|
|
685
|
+
//# sourceMappingURL=types-DZARm27h.d.ts.map
|