@kubb/core 5.0.0-beta.2 → 5.0.0-beta.21
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/README.md +8 -38
- package/dist/KubbDriver-BBRa5CH2.cjs +2231 -0
- package/dist/KubbDriver-BBRa5CH2.cjs.map +1 -0
- package/dist/KubbDriver-Cq1isv2P.js +2110 -0
- package/dist/KubbDriver-Cq1isv2P.js.map +1 -0
- package/dist/{types-CC09VtBt.d.ts → createKubb-CYrw_xaR.d.ts} +1414 -1255
- package/dist/index.cjs +221 -1074
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +2 -185
- package/dist/index.js +211 -1068
- package/dist/index.js.map +1 -1
- package/dist/mocks.cjs +30 -21
- package/dist/mocks.cjs.map +1 -1
- package/dist/mocks.d.ts +5 -5
- package/dist/mocks.js +29 -20
- package/dist/mocks.js.map +1 -1
- package/package.json +6 -18
- package/src/FileManager.ts +75 -58
- package/src/FileProcessor.ts +48 -38
- package/src/KubbDriver.ts +915 -0
- package/src/constants.ts +11 -6
- package/src/createAdapter.ts +84 -1
- package/src/createKubb.ts +1022 -485
- package/src/createRenderer.ts +33 -22
- package/src/defineGenerator.ts +96 -7
- package/src/defineLogger.ts +42 -3
- package/src/defineMiddleware.ts +1 -1
- package/src/defineParser.ts +1 -1
- package/src/definePlugin.ts +304 -8
- package/src/defineResolver.ts +271 -150
- package/src/devtools.ts +8 -1
- package/src/index.ts +2 -2
- package/src/mocks.ts +11 -14
- package/src/storages/fsStorage.ts +13 -37
- package/src/types.ts +39 -1292
- package/dist/PluginDriver-BXibeQk-.cjs +0 -1036
- package/dist/PluginDriver-BXibeQk-.cjs.map +0 -1
- package/dist/PluginDriver-DV3p2Hky.js +0 -945
- package/dist/PluginDriver-DV3p2Hky.js.map +0 -1
- package/src/Kubb.ts +0 -300
- package/src/PluginDriver.ts +0 -424
- package/src/renderNode.ts +0 -35
- package/src/utils/diagnostics.ts +0 -18
- package/src/utils/isInputPath.ts +0 -10
- package/src/utils/packageJSON.ts +0 -99
package/dist/index.js
CHANGED
|
@@ -1,184 +1,9 @@
|
|
|
1
|
-
import
|
|
2
|
-
import { a as
|
|
3
|
-
import { EventEmitter } from "node:events";
|
|
1
|
+
import "./chunk--u3MIqq1.js";
|
|
2
|
+
import { a as FileManager, c as DEFAULT_BANNER, d as logLevel, f as URLPath, i as FileProcessor, l as DEFAULT_EXTENSION, m as BuildError, o as defineResolver, p as AsyncEventEmitter, r as _usingCtx, s as definePlugin, t as KubbDriver, u as DEFAULT_STUDIO_URL } from "./KubbDriver-Cq1isv2P.js";
|
|
4
3
|
import { access, mkdir, readFile, readdir, rm, writeFile } from "node:fs/promises";
|
|
5
4
|
import { dirname, join, resolve } from "node:path";
|
|
6
5
|
import * as ast from "@kubb/ast";
|
|
7
|
-
import { collectUsedSchemaNames, extractStringsFromNodes, transform, walk } from "@kubb/ast";
|
|
8
6
|
import { version } from "node:process";
|
|
9
|
-
//#region ../../internals/utils/src/errors.ts
|
|
10
|
-
/**
|
|
11
|
-
* Thrown when one or more errors occur during a Kubb build.
|
|
12
|
-
* Carries the full list of underlying errors on `errors`.
|
|
13
|
-
*
|
|
14
|
-
* @example
|
|
15
|
-
* ```ts
|
|
16
|
-
* throw new BuildError('Build failed', { errors: [err1, err2] })
|
|
17
|
-
* ```
|
|
18
|
-
*/
|
|
19
|
-
var BuildError = class extends Error {
|
|
20
|
-
errors;
|
|
21
|
-
constructor(message, options) {
|
|
22
|
-
super(message, { cause: options.cause });
|
|
23
|
-
this.name = "BuildError";
|
|
24
|
-
this.errors = options.errors;
|
|
25
|
-
}
|
|
26
|
-
};
|
|
27
|
-
/**
|
|
28
|
-
* Coerces an unknown thrown value to an `Error` instance.
|
|
29
|
-
* Returns the value as-is when it is already an `Error`; otherwise wraps it with `String(value)`.
|
|
30
|
-
*
|
|
31
|
-
* @example
|
|
32
|
-
* ```ts
|
|
33
|
-
* try { ... } catch(err) {
|
|
34
|
-
* throw new BuildError('Build failed', { cause: toError(err), errors: [] })
|
|
35
|
-
* }
|
|
36
|
-
* ```
|
|
37
|
-
*/
|
|
38
|
-
function toError(value) {
|
|
39
|
-
return value instanceof Error ? value : new Error(String(value));
|
|
40
|
-
}
|
|
41
|
-
//#endregion
|
|
42
|
-
//#region ../../internals/utils/src/asyncEventEmitter.ts
|
|
43
|
-
/**
|
|
44
|
-
* Typed `EventEmitter` that awaits all async listeners before resolving.
|
|
45
|
-
* Wraps Node's `EventEmitter` with full TypeScript event-map inference.
|
|
46
|
-
*
|
|
47
|
-
* @example
|
|
48
|
-
* ```ts
|
|
49
|
-
* const emitter = new AsyncEventEmitter<{ build: [name: string] }>()
|
|
50
|
-
* emitter.on('build', async (name) => { console.log(name) })
|
|
51
|
-
* await emitter.emit('build', 'petstore') // all listeners awaited
|
|
52
|
-
* ```
|
|
53
|
-
*/
|
|
54
|
-
var AsyncEventEmitter = class {
|
|
55
|
-
/**
|
|
56
|
-
* Maximum number of listeners per event before Node emits a memory-leak warning.
|
|
57
|
-
* @default 10
|
|
58
|
-
*/
|
|
59
|
-
constructor(maxListener = 10) {
|
|
60
|
-
this.#emitter.setMaxListeners(maxListener);
|
|
61
|
-
}
|
|
62
|
-
#emitter = new EventEmitter();
|
|
63
|
-
/**
|
|
64
|
-
* Emits `eventName` and awaits all registered listeners sequentially.
|
|
65
|
-
* Throws if any listener rejects, wrapping the cause with the event name and serialized arguments.
|
|
66
|
-
*
|
|
67
|
-
* @example
|
|
68
|
-
* ```ts
|
|
69
|
-
* await emitter.emit('build', 'petstore')
|
|
70
|
-
* ```
|
|
71
|
-
*/
|
|
72
|
-
async emit(eventName, ...eventArgs) {
|
|
73
|
-
const listeners = this.#emitter.listeners(eventName);
|
|
74
|
-
if (listeners.length === 0) return;
|
|
75
|
-
for (const listener of listeners) try {
|
|
76
|
-
await listener(...eventArgs);
|
|
77
|
-
} catch (err) {
|
|
78
|
-
let serializedArgs;
|
|
79
|
-
try {
|
|
80
|
-
serializedArgs = JSON.stringify(eventArgs);
|
|
81
|
-
} catch {
|
|
82
|
-
serializedArgs = String(eventArgs);
|
|
83
|
-
}
|
|
84
|
-
throw new Error(`Error in async listener for "${eventName}" with eventArgs ${serializedArgs}`, { cause: toError(err) });
|
|
85
|
-
}
|
|
86
|
-
}
|
|
87
|
-
/**
|
|
88
|
-
* Registers a persistent listener for `eventName`.
|
|
89
|
-
*
|
|
90
|
-
* @example
|
|
91
|
-
* ```ts
|
|
92
|
-
* emitter.on('build', async (name) => { console.log(name) })
|
|
93
|
-
* ```
|
|
94
|
-
*/
|
|
95
|
-
on(eventName, handler) {
|
|
96
|
-
this.#emitter.on(eventName, handler);
|
|
97
|
-
}
|
|
98
|
-
/**
|
|
99
|
-
* Registers a one-shot listener that removes itself after the first invocation.
|
|
100
|
-
*
|
|
101
|
-
* @example
|
|
102
|
-
* ```ts
|
|
103
|
-
* emitter.onOnce('build', async (name) => { console.log(name) })
|
|
104
|
-
* ```
|
|
105
|
-
*/
|
|
106
|
-
onOnce(eventName, handler) {
|
|
107
|
-
const wrapper = (...args) => {
|
|
108
|
-
this.off(eventName, wrapper);
|
|
109
|
-
return handler(...args);
|
|
110
|
-
};
|
|
111
|
-
this.on(eventName, wrapper);
|
|
112
|
-
}
|
|
113
|
-
/**
|
|
114
|
-
* Removes a previously registered listener.
|
|
115
|
-
*
|
|
116
|
-
* @example
|
|
117
|
-
* ```ts
|
|
118
|
-
* emitter.off('build', handler)
|
|
119
|
-
* ```
|
|
120
|
-
*/
|
|
121
|
-
off(eventName, handler) {
|
|
122
|
-
this.#emitter.off(eventName, handler);
|
|
123
|
-
}
|
|
124
|
-
/**
|
|
125
|
-
* Returns the number of listeners registered for `eventName`.
|
|
126
|
-
*
|
|
127
|
-
* @example
|
|
128
|
-
* ```ts
|
|
129
|
-
* emitter.on('build', handler)
|
|
130
|
-
* emitter.listenerCount('build') // 1
|
|
131
|
-
* ```
|
|
132
|
-
*/
|
|
133
|
-
listenerCount(eventName) {
|
|
134
|
-
return this.#emitter.listenerCount(eventName);
|
|
135
|
-
}
|
|
136
|
-
/**
|
|
137
|
-
* Removes all listeners from every event channel.
|
|
138
|
-
*
|
|
139
|
-
* @example
|
|
140
|
-
* ```ts
|
|
141
|
-
* emitter.removeAll()
|
|
142
|
-
* ```
|
|
143
|
-
*/
|
|
144
|
-
removeAll() {
|
|
145
|
-
this.#emitter.removeAllListeners();
|
|
146
|
-
}
|
|
147
|
-
};
|
|
148
|
-
//#endregion
|
|
149
|
-
//#region ../../internals/utils/src/time.ts
|
|
150
|
-
/**
|
|
151
|
-
* Calculates elapsed time in milliseconds from a high-resolution `process.hrtime` start time.
|
|
152
|
-
* Rounds to 2 decimal places for sub-millisecond precision without noise.
|
|
153
|
-
*
|
|
154
|
-
* @example
|
|
155
|
-
* ```ts
|
|
156
|
-
* const start = process.hrtime()
|
|
157
|
-
* doWork()
|
|
158
|
-
* getElapsedMs(start) // 42.35
|
|
159
|
-
* ```
|
|
160
|
-
*/
|
|
161
|
-
function getElapsedMs(hrStart) {
|
|
162
|
-
const [seconds, nanoseconds] = process.hrtime(hrStart);
|
|
163
|
-
const ms = seconds * 1e3 + nanoseconds / 1e6;
|
|
164
|
-
return Math.round(ms * 100) / 100;
|
|
165
|
-
}
|
|
166
|
-
/**
|
|
167
|
-
* Converts a millisecond duration into a human-readable string (`ms`, `s`, or `m s`).
|
|
168
|
-
*
|
|
169
|
-
* @example
|
|
170
|
-
* ```ts
|
|
171
|
-
* formatMs(250) // '250ms'
|
|
172
|
-
* formatMs(1500) // '1.50s'
|
|
173
|
-
* formatMs(90000) // '1m 30.0s'
|
|
174
|
-
* ```
|
|
175
|
-
*/
|
|
176
|
-
function formatMs(ms) {
|
|
177
|
-
if (ms >= 6e4) return `${Math.floor(ms / 6e4)}m ${(ms % 6e4 / 1e3).toFixed(1)}s`;
|
|
178
|
-
if (ms >= 1e3) return `${(ms / 1e3).toFixed(2)}s`;
|
|
179
|
-
return `${Math.round(ms)}ms`;
|
|
180
|
-
}
|
|
181
|
-
//#endregion
|
|
182
7
|
//#region ../../internals/utils/src/fs.ts
|
|
183
8
|
/**
|
|
184
9
|
* Resolves to `true` when the file or directory at `path` exists.
|
|
@@ -245,255 +70,6 @@ async function clean(path) {
|
|
|
245
70
|
});
|
|
246
71
|
}
|
|
247
72
|
//#endregion
|
|
248
|
-
//#region ../../internals/utils/src/reserved.ts
|
|
249
|
-
/**
|
|
250
|
-
* JavaScript and Java reserved words.
|
|
251
|
-
* @link https://github.com/jonschlinkert/reserved/blob/master/index.js
|
|
252
|
-
*/
|
|
253
|
-
const reservedWords = new Set([
|
|
254
|
-
"abstract",
|
|
255
|
-
"arguments",
|
|
256
|
-
"boolean",
|
|
257
|
-
"break",
|
|
258
|
-
"byte",
|
|
259
|
-
"case",
|
|
260
|
-
"catch",
|
|
261
|
-
"char",
|
|
262
|
-
"class",
|
|
263
|
-
"const",
|
|
264
|
-
"continue",
|
|
265
|
-
"debugger",
|
|
266
|
-
"default",
|
|
267
|
-
"delete",
|
|
268
|
-
"do",
|
|
269
|
-
"double",
|
|
270
|
-
"else",
|
|
271
|
-
"enum",
|
|
272
|
-
"eval",
|
|
273
|
-
"export",
|
|
274
|
-
"extends",
|
|
275
|
-
"false",
|
|
276
|
-
"final",
|
|
277
|
-
"finally",
|
|
278
|
-
"float",
|
|
279
|
-
"for",
|
|
280
|
-
"function",
|
|
281
|
-
"goto",
|
|
282
|
-
"if",
|
|
283
|
-
"implements",
|
|
284
|
-
"import",
|
|
285
|
-
"in",
|
|
286
|
-
"instanceof",
|
|
287
|
-
"int",
|
|
288
|
-
"interface",
|
|
289
|
-
"let",
|
|
290
|
-
"long",
|
|
291
|
-
"native",
|
|
292
|
-
"new",
|
|
293
|
-
"null",
|
|
294
|
-
"package",
|
|
295
|
-
"private",
|
|
296
|
-
"protected",
|
|
297
|
-
"public",
|
|
298
|
-
"return",
|
|
299
|
-
"short",
|
|
300
|
-
"static",
|
|
301
|
-
"super",
|
|
302
|
-
"switch",
|
|
303
|
-
"synchronized",
|
|
304
|
-
"this",
|
|
305
|
-
"throw",
|
|
306
|
-
"throws",
|
|
307
|
-
"transient",
|
|
308
|
-
"true",
|
|
309
|
-
"try",
|
|
310
|
-
"typeof",
|
|
311
|
-
"var",
|
|
312
|
-
"void",
|
|
313
|
-
"volatile",
|
|
314
|
-
"while",
|
|
315
|
-
"with",
|
|
316
|
-
"yield",
|
|
317
|
-
"Array",
|
|
318
|
-
"Date",
|
|
319
|
-
"hasOwnProperty",
|
|
320
|
-
"Infinity",
|
|
321
|
-
"isFinite",
|
|
322
|
-
"isNaN",
|
|
323
|
-
"isPrototypeOf",
|
|
324
|
-
"length",
|
|
325
|
-
"Math",
|
|
326
|
-
"name",
|
|
327
|
-
"NaN",
|
|
328
|
-
"Number",
|
|
329
|
-
"Object",
|
|
330
|
-
"prototype",
|
|
331
|
-
"String",
|
|
332
|
-
"toString",
|
|
333
|
-
"undefined",
|
|
334
|
-
"valueOf"
|
|
335
|
-
]);
|
|
336
|
-
/**
|
|
337
|
-
* Returns `true` when `name` is a syntactically valid JavaScript variable name.
|
|
338
|
-
*
|
|
339
|
-
* @example
|
|
340
|
-
* ```ts
|
|
341
|
-
* isValidVarName('status') // true
|
|
342
|
-
* isValidVarName('class') // false (reserved word)
|
|
343
|
-
* isValidVarName('42foo') // false (starts with digit)
|
|
344
|
-
* ```
|
|
345
|
-
*/
|
|
346
|
-
function isValidVarName(name) {
|
|
347
|
-
if (!name || reservedWords.has(name)) return false;
|
|
348
|
-
return /^[a-zA-Z_$][a-zA-Z0-9_$]*$/.test(name);
|
|
349
|
-
}
|
|
350
|
-
//#endregion
|
|
351
|
-
//#region ../../internals/utils/src/urlPath.ts
|
|
352
|
-
/**
|
|
353
|
-
* Parses and transforms an OpenAPI/Swagger path string into various URL formats.
|
|
354
|
-
*
|
|
355
|
-
* @example
|
|
356
|
-
* const p = new URLPath('/pet/{petId}')
|
|
357
|
-
* p.URL // '/pet/:petId'
|
|
358
|
-
* p.template // '`/pet/${petId}`'
|
|
359
|
-
*/
|
|
360
|
-
var URLPath = class {
|
|
361
|
-
/**
|
|
362
|
-
* The raw OpenAPI/Swagger path string, e.g. `/pet/{petId}`.
|
|
363
|
-
*/
|
|
364
|
-
path;
|
|
365
|
-
#options;
|
|
366
|
-
constructor(path, options = {}) {
|
|
367
|
-
this.path = path;
|
|
368
|
-
this.#options = options;
|
|
369
|
-
}
|
|
370
|
-
/** Converts the OpenAPI path to Express-style colon syntax, e.g. `/pet/{petId}` → `/pet/:petId`.
|
|
371
|
-
*
|
|
372
|
-
* @example
|
|
373
|
-
* ```ts
|
|
374
|
-
* new URLPath('/pet/{petId}').URL // '/pet/:petId'
|
|
375
|
-
* ```
|
|
376
|
-
*/
|
|
377
|
-
get URL() {
|
|
378
|
-
return this.toURLPath();
|
|
379
|
-
}
|
|
380
|
-
/** Returns `true` when `path` is a fully-qualified URL (e.g. starts with `https://`).
|
|
381
|
-
*
|
|
382
|
-
* @example
|
|
383
|
-
* ```ts
|
|
384
|
-
* new URLPath('https://petstore.swagger.io/v2/pet').isURL // true
|
|
385
|
-
* new URLPath('/pet/{petId}').isURL // false
|
|
386
|
-
* ```
|
|
387
|
-
*/
|
|
388
|
-
get isURL() {
|
|
389
|
-
try {
|
|
390
|
-
return !!new URL(this.path).href;
|
|
391
|
-
} catch {
|
|
392
|
-
return false;
|
|
393
|
-
}
|
|
394
|
-
}
|
|
395
|
-
/**
|
|
396
|
-
* Converts the OpenAPI path to a TypeScript template literal string.
|
|
397
|
-
*
|
|
398
|
-
* @example
|
|
399
|
-
* new URLPath('/pet/{petId}').template // '`/pet/${petId}`'
|
|
400
|
-
* new URLPath('/account/monetary-accountID').template // '`/account/${monetaryAccountId}`'
|
|
401
|
-
*/
|
|
402
|
-
get template() {
|
|
403
|
-
return this.toTemplateString();
|
|
404
|
-
}
|
|
405
|
-
/** Returns the path and its extracted params as a structured `URLObject`, or as a stringified expression when `stringify` is set.
|
|
406
|
-
*
|
|
407
|
-
* @example
|
|
408
|
-
* ```ts
|
|
409
|
-
* new URLPath('/pet/{petId}').object
|
|
410
|
-
* // { url: '/pet/:petId', params: { petId: 'petId' } }
|
|
411
|
-
* ```
|
|
412
|
-
*/
|
|
413
|
-
get object() {
|
|
414
|
-
return this.toObject();
|
|
415
|
-
}
|
|
416
|
-
/** Returns a map of path parameter names, or `undefined` when the path has no parameters.
|
|
417
|
-
*
|
|
418
|
-
* @example
|
|
419
|
-
* ```ts
|
|
420
|
-
* new URLPath('/pet/{petId}').params // { petId: 'petId' }
|
|
421
|
-
* new URLPath('/pet').params // undefined
|
|
422
|
-
* ```
|
|
423
|
-
*/
|
|
424
|
-
get params() {
|
|
425
|
-
return this.getParams();
|
|
426
|
-
}
|
|
427
|
-
#transformParam(raw) {
|
|
428
|
-
const param = isValidVarName(raw) ? raw : camelCase(raw);
|
|
429
|
-
return this.#options.casing === "camelcase" ? camelCase(param) : param;
|
|
430
|
-
}
|
|
431
|
-
/**
|
|
432
|
-
* Iterates over every `{param}` token in `path`, calling `fn` with the raw token and transformed name.
|
|
433
|
-
*/
|
|
434
|
-
#eachParam(fn) {
|
|
435
|
-
for (const match of this.path.matchAll(/\{([^}]+)\}/g)) {
|
|
436
|
-
const raw = match[1];
|
|
437
|
-
fn(raw, this.#transformParam(raw));
|
|
438
|
-
}
|
|
439
|
-
}
|
|
440
|
-
toObject({ type = "path", replacer, stringify } = {}) {
|
|
441
|
-
const object = {
|
|
442
|
-
url: type === "path" ? this.toURLPath() : this.toTemplateString({ replacer }),
|
|
443
|
-
params: this.getParams()
|
|
444
|
-
};
|
|
445
|
-
if (stringify) {
|
|
446
|
-
if (type === "template") return JSON.stringify(object).replaceAll("'", "").replaceAll(`"`, "");
|
|
447
|
-
if (object.params) return `{ url: '${object.url}', params: ${JSON.stringify(object.params).replaceAll("'", "").replaceAll(`"`, "")} }`;
|
|
448
|
-
return `{ url: '${object.url}' }`;
|
|
449
|
-
}
|
|
450
|
-
return object;
|
|
451
|
-
}
|
|
452
|
-
/**
|
|
453
|
-
* Converts the OpenAPI path to a TypeScript template literal string.
|
|
454
|
-
* An optional `replacer` can transform each extracted parameter name before interpolation.
|
|
455
|
-
*
|
|
456
|
-
* @example
|
|
457
|
-
* new URLPath('/pet/{petId}').toTemplateString() // '`/pet/${petId}`'
|
|
458
|
-
*/
|
|
459
|
-
toTemplateString({ prefix = "", replacer } = {}) {
|
|
460
|
-
return `\`${prefix}${this.path.split(/\{([^}]+)\}/).map((part, i) => {
|
|
461
|
-
if (i % 2 === 0) return part;
|
|
462
|
-
const param = this.#transformParam(part);
|
|
463
|
-
return `\${${replacer ? replacer(param) : param}}`;
|
|
464
|
-
}).join("")}\``;
|
|
465
|
-
}
|
|
466
|
-
/**
|
|
467
|
-
* Extracts all `{param}` segments from the path and returns them as a key-value map.
|
|
468
|
-
* An optional `replacer` transforms each parameter name in both key and value positions.
|
|
469
|
-
* Returns `undefined` when no path parameters are found.
|
|
470
|
-
*
|
|
471
|
-
* @example
|
|
472
|
-
* ```ts
|
|
473
|
-
* new URLPath('/pet/{petId}/tag/{tagId}').getParams()
|
|
474
|
-
* // { petId: 'petId', tagId: 'tagId' }
|
|
475
|
-
* ```
|
|
476
|
-
*/
|
|
477
|
-
getParams(replacer) {
|
|
478
|
-
const params = {};
|
|
479
|
-
this.#eachParam((_raw, param) => {
|
|
480
|
-
const key = replacer ? replacer(param) : param;
|
|
481
|
-
params[key] = key;
|
|
482
|
-
});
|
|
483
|
-
return Object.keys(params).length > 0 ? params : void 0;
|
|
484
|
-
}
|
|
485
|
-
/** Converts the OpenAPI path to Express-style colon syntax.
|
|
486
|
-
*
|
|
487
|
-
* @example
|
|
488
|
-
* ```ts
|
|
489
|
-
* new URLPath('/pet/{petId}').toURLPath() // '/pet/:petId'
|
|
490
|
-
* ```
|
|
491
|
-
*/
|
|
492
|
-
toURLPath() {
|
|
493
|
-
return this.path.replace(/\{([^}]+)\}/g, ":$1");
|
|
494
|
-
}
|
|
495
|
-
};
|
|
496
|
-
//#endregion
|
|
497
73
|
//#region src/createAdapter.ts
|
|
498
74
|
/**
|
|
499
75
|
* Factory for implementing custom adapters that translate non-OpenAPI specs into Kubb's AST.
|
|
@@ -524,180 +100,8 @@ function createAdapter(build) {
|
|
|
524
100
|
return (options) => build(options ?? {});
|
|
525
101
|
}
|
|
526
102
|
//#endregion
|
|
527
|
-
//#region
|
|
528
|
-
var
|
|
529
|
-
static {
|
|
530
|
-
__name(this, "Node");
|
|
531
|
-
}
|
|
532
|
-
value;
|
|
533
|
-
next;
|
|
534
|
-
constructor(value) {
|
|
535
|
-
this.value = value;
|
|
536
|
-
}
|
|
537
|
-
};
|
|
538
|
-
var Queue = class {
|
|
539
|
-
#head;
|
|
540
|
-
#tail;
|
|
541
|
-
#size;
|
|
542
|
-
constructor() {
|
|
543
|
-
this.clear();
|
|
544
|
-
}
|
|
545
|
-
enqueue(value) {
|
|
546
|
-
const node = new Node$1(value);
|
|
547
|
-
if (this.#head) {
|
|
548
|
-
this.#tail.next = node;
|
|
549
|
-
this.#tail = node;
|
|
550
|
-
} else {
|
|
551
|
-
this.#head = node;
|
|
552
|
-
this.#tail = node;
|
|
553
|
-
}
|
|
554
|
-
this.#size++;
|
|
555
|
-
}
|
|
556
|
-
dequeue() {
|
|
557
|
-
const current = this.#head;
|
|
558
|
-
if (!current) return;
|
|
559
|
-
this.#head = this.#head.next;
|
|
560
|
-
this.#size--;
|
|
561
|
-
if (!this.#head) this.#tail = void 0;
|
|
562
|
-
return current.value;
|
|
563
|
-
}
|
|
564
|
-
peek() {
|
|
565
|
-
if (!this.#head) return;
|
|
566
|
-
return this.#head.value;
|
|
567
|
-
}
|
|
568
|
-
clear() {
|
|
569
|
-
this.#head = void 0;
|
|
570
|
-
this.#tail = void 0;
|
|
571
|
-
this.#size = 0;
|
|
572
|
-
}
|
|
573
|
-
get size() {
|
|
574
|
-
return this.#size;
|
|
575
|
-
}
|
|
576
|
-
*[Symbol.iterator]() {
|
|
577
|
-
let current = this.#head;
|
|
578
|
-
while (current) {
|
|
579
|
-
yield current.value;
|
|
580
|
-
current = current.next;
|
|
581
|
-
}
|
|
582
|
-
}
|
|
583
|
-
*drain() {
|
|
584
|
-
while (this.#head) yield this.dequeue();
|
|
585
|
-
}
|
|
586
|
-
};
|
|
587
|
-
//#endregion
|
|
588
|
-
//#region ../../node_modules/.pnpm/p-limit@7.3.0/node_modules/p-limit/index.js
|
|
589
|
-
function pLimit(concurrency) {
|
|
590
|
-
let rejectOnClear = false;
|
|
591
|
-
if (typeof concurrency === "object") ({concurrency, rejectOnClear = false} = concurrency);
|
|
592
|
-
validateConcurrency(concurrency);
|
|
593
|
-
if (typeof rejectOnClear !== "boolean") throw new TypeError("Expected `rejectOnClear` to be a boolean");
|
|
594
|
-
const queue = new Queue();
|
|
595
|
-
let activeCount = 0;
|
|
596
|
-
const resumeNext = () => {
|
|
597
|
-
if (activeCount < concurrency && queue.size > 0) {
|
|
598
|
-
activeCount++;
|
|
599
|
-
queue.dequeue().run();
|
|
600
|
-
}
|
|
601
|
-
};
|
|
602
|
-
const next = () => {
|
|
603
|
-
activeCount--;
|
|
604
|
-
resumeNext();
|
|
605
|
-
};
|
|
606
|
-
const run = async (function_, resolve, arguments_) => {
|
|
607
|
-
const result = (async () => function_(...arguments_))();
|
|
608
|
-
resolve(result);
|
|
609
|
-
try {
|
|
610
|
-
await result;
|
|
611
|
-
} catch {}
|
|
612
|
-
next();
|
|
613
|
-
};
|
|
614
|
-
const enqueue = (function_, resolve, reject, arguments_) => {
|
|
615
|
-
const queueItem = { reject };
|
|
616
|
-
new Promise((internalResolve) => {
|
|
617
|
-
queueItem.run = internalResolve;
|
|
618
|
-
queue.enqueue(queueItem);
|
|
619
|
-
}).then(run.bind(void 0, function_, resolve, arguments_));
|
|
620
|
-
if (activeCount < concurrency) resumeNext();
|
|
621
|
-
};
|
|
622
|
-
const generator = (function_, ...arguments_) => new Promise((resolve, reject) => {
|
|
623
|
-
enqueue(function_, resolve, reject, arguments_);
|
|
624
|
-
});
|
|
625
|
-
Object.defineProperties(generator, {
|
|
626
|
-
activeCount: { get: () => activeCount },
|
|
627
|
-
pendingCount: { get: () => queue.size },
|
|
628
|
-
clearQueue: { value() {
|
|
629
|
-
if (!rejectOnClear) {
|
|
630
|
-
queue.clear();
|
|
631
|
-
return;
|
|
632
|
-
}
|
|
633
|
-
const abortError = AbortSignal.abort().reason;
|
|
634
|
-
while (queue.size > 0) queue.dequeue().reject(abortError);
|
|
635
|
-
} },
|
|
636
|
-
concurrency: {
|
|
637
|
-
get: () => concurrency,
|
|
638
|
-
set(newConcurrency) {
|
|
639
|
-
validateConcurrency(newConcurrency);
|
|
640
|
-
concurrency = newConcurrency;
|
|
641
|
-
queueMicrotask(() => {
|
|
642
|
-
while (activeCount < concurrency && queue.size > 0) resumeNext();
|
|
643
|
-
});
|
|
644
|
-
}
|
|
645
|
-
},
|
|
646
|
-
map: { async value(iterable, function_) {
|
|
647
|
-
const promises = Array.from(iterable, (value, index) => this(function_, value, index));
|
|
648
|
-
return Promise.all(promises);
|
|
649
|
-
} }
|
|
650
|
-
});
|
|
651
|
-
return generator;
|
|
652
|
-
}
|
|
653
|
-
function validateConcurrency(concurrency) {
|
|
654
|
-
if (!((Number.isInteger(concurrency) || concurrency === Number.POSITIVE_INFINITY) && concurrency > 0)) throw new TypeError("Expected `concurrency` to be a number from 1 and up");
|
|
655
|
-
}
|
|
656
|
-
//#endregion
|
|
657
|
-
//#region src/FileProcessor.ts
|
|
658
|
-
function joinSources(file) {
|
|
659
|
-
return file.sources.map((item) => extractStringsFromNodes(item.nodes)).filter(Boolean).join("\n\n");
|
|
660
|
-
}
|
|
661
|
-
/**
|
|
662
|
-
* Converts a single file to a string using the registered parsers.
|
|
663
|
-
* Falls back to joining source values when no matching parser is found.
|
|
664
|
-
*
|
|
665
|
-
* @internal
|
|
666
|
-
*/
|
|
667
|
-
var FileProcessor = class {
|
|
668
|
-
#limit = pLimit(100);
|
|
669
|
-
async parse(file, { parsers, extension } = {}) {
|
|
670
|
-
const parseExtName = extension?.[file.extname] || void 0;
|
|
671
|
-
if (!parsers || !file.extname) return joinSources(file);
|
|
672
|
-
const parser = parsers.get(file.extname);
|
|
673
|
-
if (!parser) return joinSources(file);
|
|
674
|
-
return parser.parse(file, { extname: parseExtName });
|
|
675
|
-
}
|
|
676
|
-
async run(files, { parsers, mode = "sequential", extension, onStart, onEnd, onUpdate } = {}) {
|
|
677
|
-
await onStart?.(files);
|
|
678
|
-
const total = files.length;
|
|
679
|
-
let processed = 0;
|
|
680
|
-
const processOne = async (file) => {
|
|
681
|
-
const source = await this.parse(file, {
|
|
682
|
-
extension,
|
|
683
|
-
parsers
|
|
684
|
-
});
|
|
685
|
-
const currentProcessed = ++processed;
|
|
686
|
-
const percentage = currentProcessed / total * 100;
|
|
687
|
-
await onUpdate?.({
|
|
688
|
-
file,
|
|
689
|
-
source,
|
|
690
|
-
processed: currentProcessed,
|
|
691
|
-
percentage,
|
|
692
|
-
total
|
|
693
|
-
});
|
|
694
|
-
};
|
|
695
|
-
if (mode === "sequential") for (const file of files) await processOne(file);
|
|
696
|
-
else await Promise.all(files.map((file) => this.#limit(() => processOne(file))));
|
|
697
|
-
await onEnd?.(files);
|
|
698
|
-
return files;
|
|
699
|
-
}
|
|
700
|
-
};
|
|
103
|
+
//#region package.json
|
|
104
|
+
var version$1 = "5.0.0-beta.21";
|
|
701
105
|
//#endregion
|
|
702
106
|
//#region src/createStorage.ts
|
|
703
107
|
/**
|
|
@@ -738,12 +142,6 @@ function createStorage(build) {
|
|
|
738
142
|
//#endregion
|
|
739
143
|
//#region src/storages/fsStorage.ts
|
|
740
144
|
/**
|
|
741
|
-
* Detects the filesystem error used to indicate that a path does not exist.
|
|
742
|
-
*/
|
|
743
|
-
function isMissingPathError(error) {
|
|
744
|
-
return typeof error === "object" && error !== null && "code" in error && error.code === "ENOENT";
|
|
745
|
-
}
|
|
746
|
-
/**
|
|
747
145
|
* Built-in filesystem storage driver.
|
|
748
146
|
*
|
|
749
147
|
* This is the default storage when no `storage` option is configured in the root config.
|
|
@@ -774,17 +172,15 @@ const fsStorage = createStorage(() => ({
|
|
|
774
172
|
try {
|
|
775
173
|
await access(resolve(key));
|
|
776
174
|
return true;
|
|
777
|
-
} catch (
|
|
778
|
-
|
|
779
|
-
throw new Error(`Failed to access storage item "${key}"`, { cause: error });
|
|
175
|
+
} catch (_error) {
|
|
176
|
+
return false;
|
|
780
177
|
}
|
|
781
178
|
},
|
|
782
179
|
async getItem(key) {
|
|
783
180
|
try {
|
|
784
181
|
return await readFile(resolve(key), "utf8");
|
|
785
|
-
} catch (
|
|
786
|
-
|
|
787
|
-
throw new Error(`Failed to read storage item "${key}"`, { cause: error });
|
|
182
|
+
} catch (_error) {
|
|
183
|
+
return null;
|
|
788
184
|
}
|
|
789
185
|
},
|
|
790
186
|
async setItem(key, value) {
|
|
@@ -794,23 +190,22 @@ const fsStorage = createStorage(() => ({
|
|
|
794
190
|
await rm(resolve(key), { force: true });
|
|
795
191
|
},
|
|
796
192
|
async getKeys(base) {
|
|
797
|
-
const keys = [];
|
|
798
193
|
const resolvedBase = resolve(base ?? process.cwd());
|
|
799
|
-
async function walk(dir, prefix) {
|
|
194
|
+
async function* walk(dir, prefix) {
|
|
800
195
|
let entries;
|
|
801
196
|
try {
|
|
802
197
|
entries = await readdir(dir, { withFileTypes: true });
|
|
803
|
-
} catch (
|
|
804
|
-
|
|
805
|
-
throw new Error(`Failed to list storage keys under "${resolvedBase}"`, { cause: error });
|
|
198
|
+
} catch (_error) {
|
|
199
|
+
return;
|
|
806
200
|
}
|
|
807
201
|
for (const entry of entries) {
|
|
808
202
|
const rel = prefix ? `${prefix}/${entry.name}` : entry.name;
|
|
809
|
-
if (entry.isDirectory())
|
|
810
|
-
else
|
|
203
|
+
if (entry.isDirectory()) yield* walk(join(dir, entry.name), rel);
|
|
204
|
+
else yield rel;
|
|
811
205
|
}
|
|
812
206
|
}
|
|
813
|
-
|
|
207
|
+
const keys = [];
|
|
208
|
+
for await (const key of walk(resolvedBase, "")) keys.push(key);
|
|
814
209
|
return keys;
|
|
815
210
|
},
|
|
816
211
|
async clear(base) {
|
|
@@ -819,475 +214,236 @@ const fsStorage = createStorage(() => ({
|
|
|
819
214
|
}
|
|
820
215
|
}));
|
|
821
216
|
//#endregion
|
|
822
|
-
//#region
|
|
823
|
-
var version$1 = "5.0.0-beta.2";
|
|
824
|
-
//#endregion
|
|
825
|
-
//#region src/utils/diagnostics.ts
|
|
217
|
+
//#region src/createKubb.ts
|
|
826
218
|
/**
|
|
827
|
-
*
|
|
828
|
-
*
|
|
829
|
-
*
|
|
830
|
-
*
|
|
219
|
+
* Builds a `Storage` view scoped to the file paths produced by the current build.
|
|
220
|
+
* Reads delegate to the underlying `storage` so source bytes stay where they were
|
|
221
|
+
* written; writes register the key so subsequent reads and `getKeys` are scoped
|
|
222
|
+
* to this build's output.
|
|
831
223
|
*/
|
|
832
|
-
function
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
}
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
` • Output: ${userConfig.output?.path || "not specified"}`,
|
|
860
|
-
` • Plugins: ${userConfig.plugins?.length || 0}`,
|
|
861
|
-
"Output Settings:",
|
|
862
|
-
` • Storage: ${userConfig.storage ? `custom(${userConfig.storage.name})` : userConfig.output?.write === false ? "disabled" : "filesystem (default)"}`,
|
|
863
|
-
` • Formatter: ${userConfig.output?.format || "none"}`,
|
|
864
|
-
` • Linter: ${userConfig.output?.lint || "none"}`,
|
|
865
|
-
"Environment:",
|
|
866
|
-
Object.entries(diagnosticInfo).map(([key, value]) => ` • ${key}: ${value}`).join("\n")
|
|
867
|
-
]
|
|
868
|
-
});
|
|
869
|
-
try {
|
|
870
|
-
if (isInputPath(userConfig) && !new URLPath(userConfig.input.path).isURL) {
|
|
871
|
-
await exists(userConfig.input.path);
|
|
872
|
-
await hooks.emit("kubb:debug", {
|
|
873
|
-
date: /* @__PURE__ */ new Date(),
|
|
874
|
-
logs: [`✓ Input file validated: ${userConfig.input.path}`]
|
|
875
|
-
});
|
|
876
|
-
}
|
|
877
|
-
} catch (caughtError) {
|
|
878
|
-
if (isInputPath(userConfig)) {
|
|
879
|
-
const error = caughtError;
|
|
880
|
-
throw new Error(`Cannot read file/URL defined in \`input.path\` or set with \`kubb generate PATH\` in the CLI of your Kubb config ${userConfig.input.path}`, { cause: error });
|
|
224
|
+
function createSourcesView(storage) {
|
|
225
|
+
const paths = /* @__PURE__ */ new Set();
|
|
226
|
+
return createStorage(() => ({
|
|
227
|
+
name: `${storage.name}:sources`,
|
|
228
|
+
async hasItem(key) {
|
|
229
|
+
return paths.has(key) && await storage.hasItem(key);
|
|
230
|
+
},
|
|
231
|
+
async getItem(key) {
|
|
232
|
+
return paths.has(key) ? storage.getItem(key) : null;
|
|
233
|
+
},
|
|
234
|
+
async setItem(key, value) {
|
|
235
|
+
paths.add(key);
|
|
236
|
+
await storage.setItem(key, value);
|
|
237
|
+
},
|
|
238
|
+
async removeItem(key) {
|
|
239
|
+
paths.delete(key);
|
|
240
|
+
await storage.removeItem(key);
|
|
241
|
+
},
|
|
242
|
+
async getKeys(base) {
|
|
243
|
+
if (!base) return [...paths];
|
|
244
|
+
const result = [];
|
|
245
|
+
for (const key of paths) if (key.startsWith(base)) result.push(key);
|
|
246
|
+
return result;
|
|
247
|
+
},
|
|
248
|
+
async clear() {
|
|
249
|
+
paths.clear();
|
|
250
|
+
await storage.clear();
|
|
881
251
|
}
|
|
882
|
-
}
|
|
883
|
-
|
|
884
|
-
|
|
252
|
+
}))();
|
|
253
|
+
}
|
|
254
|
+
function resolveConfig(userConfig) {
|
|
255
|
+
return {
|
|
885
256
|
...userConfig,
|
|
886
257
|
root: userConfig.root || process.cwd(),
|
|
887
258
|
parsers: userConfig.parsers ?? [],
|
|
888
|
-
adapter: userConfig.adapter,
|
|
889
259
|
output: {
|
|
890
260
|
format: false,
|
|
891
261
|
lint: false,
|
|
892
|
-
write: true,
|
|
893
262
|
extension: DEFAULT_EXTENSION,
|
|
894
263
|
defaultBanner: DEFAULT_BANNER,
|
|
895
264
|
...userConfig.output
|
|
896
265
|
},
|
|
266
|
+
storage: userConfig.storage ?? fsStorage(),
|
|
897
267
|
devtools: userConfig.devtools ? {
|
|
898
268
|
studioUrl: DEFAULT_STUDIO_URL,
|
|
899
269
|
...typeof userConfig.devtools === "boolean" ? {} : userConfig.devtools
|
|
900
270
|
} : void 0,
|
|
901
|
-
plugins: userConfig.plugins
|
|
902
|
-
};
|
|
903
|
-
const storage = config.output.write === false ? null : config.storage ?? fsStorage();
|
|
904
|
-
if (config.output.clean) {
|
|
905
|
-
await hooks.emit("kubb:debug", {
|
|
906
|
-
date: /* @__PURE__ */ new Date(),
|
|
907
|
-
logs: ["Cleaning output directories", ` • Output: ${config.output.path}`]
|
|
908
|
-
});
|
|
909
|
-
await storage?.clear(resolve(config.root, config.output.path));
|
|
910
|
-
}
|
|
911
|
-
const driver = new PluginDriver(config, { hooks });
|
|
912
|
-
function registerMiddlewareHook(event, middlewareHooks) {
|
|
913
|
-
const handler = middlewareHooks[event];
|
|
914
|
-
if (handler) hooks.on(event, handler);
|
|
915
|
-
}
|
|
916
|
-
for (const middleware of config.middleware ?? []) for (const event of Object.keys(middleware.hooks)) registerMiddlewareHook(event, middleware.hooks);
|
|
917
|
-
const adapter = config.adapter;
|
|
918
|
-
if (!adapter) throw new Error("No adapter configured. Please provide an adapter in your kubb.config.ts.");
|
|
919
|
-
const source = inputToAdapterSource(config);
|
|
920
|
-
await hooks.emit("kubb:debug", {
|
|
921
|
-
date: /* @__PURE__ */ new Date(),
|
|
922
|
-
logs: [`Running adapter: ${adapter.name}`]
|
|
923
|
-
});
|
|
924
|
-
driver.adapter = adapter;
|
|
925
|
-
driver.inputNode = await adapter.parse(source);
|
|
926
|
-
await hooks.emit("kubb:debug", {
|
|
927
|
-
date: /* @__PURE__ */ new Date(),
|
|
928
|
-
logs: [
|
|
929
|
-
`✓ Adapter '${adapter.name}' resolved InputNode`,
|
|
930
|
-
` • Schemas: ${driver.inputNode.schemas.length}`,
|
|
931
|
-
` • Operations: ${driver.inputNode.operations.length}`
|
|
932
|
-
]
|
|
933
|
-
});
|
|
934
|
-
return {
|
|
935
|
-
config,
|
|
936
|
-
hooks,
|
|
937
|
-
driver,
|
|
938
|
-
sources,
|
|
939
|
-
storage
|
|
271
|
+
plugins: userConfig.plugins ?? []
|
|
940
272
|
};
|
|
941
273
|
}
|
|
942
274
|
/**
|
|
943
|
-
*
|
|
944
|
-
* (`schema`, `operation`, `operations`).
|
|
275
|
+
* Returns a snapshot of the current runtime environment.
|
|
945
276
|
*
|
|
946
|
-
*
|
|
947
|
-
*
|
|
948
|
-
* of top-level schema names transitively reachable from the included operations and skips
|
|
949
|
-
* schemas that fall outside that set. This ensures that component schemas referenced
|
|
950
|
-
* exclusively by excluded operations are not generated.
|
|
277
|
+
* Useful for attaching context to debug logs and error reports so that
|
|
278
|
+
* issues can be reproduced without manual information gathering.
|
|
951
279
|
*/
|
|
952
|
-
|
|
953
|
-
const { adapter, inputNode, resolver, driver } = context;
|
|
954
|
-
const { exclude, include, override } = plugin.options;
|
|
955
|
-
if (!adapter || !inputNode) throw new Error(`[${plugin.name}] No adapter found. Add an OAS adapter (e.g. pluginOas()) before this plugin in your Kubb config.`);
|
|
956
|
-
function resolveRenderer(gen) {
|
|
957
|
-
return gen.renderer === null ? void 0 : gen.renderer ?? plugin.renderer ?? context.config.renderer;
|
|
958
|
-
}
|
|
959
|
-
const generators = plugin.generators ?? [];
|
|
960
|
-
const collectedOperations = [];
|
|
961
|
-
const generatorContext = {
|
|
962
|
-
...context,
|
|
963
|
-
resolver: driver.getResolver(plugin.name)
|
|
964
|
-
};
|
|
965
|
-
const operationFilterTypes = new Set([
|
|
966
|
-
"tag",
|
|
967
|
-
"operationId",
|
|
968
|
-
"path",
|
|
969
|
-
"method",
|
|
970
|
-
"contentType"
|
|
971
|
-
]);
|
|
972
|
-
const hasOperationBasedIncludes = include?.some(({ type }) => operationFilterTypes.has(type)) ?? false;
|
|
973
|
-
const hasSchemaNameIncludes = include?.some(({ type }) => type === "schemaName") ?? false;
|
|
974
|
-
let allowedSchemaNames;
|
|
975
|
-
if (hasOperationBasedIncludes && !hasSchemaNameIncludes) allowedSchemaNames = collectUsedSchemaNames(inputNode.operations.filter((op) => resolver.resolveOptions(op, {
|
|
976
|
-
options: plugin.options,
|
|
977
|
-
exclude,
|
|
978
|
-
include,
|
|
979
|
-
override
|
|
980
|
-
}) !== null), inputNode.schemas);
|
|
981
|
-
await walk(inputNode, {
|
|
982
|
-
depth: "shallow",
|
|
983
|
-
async schema(node) {
|
|
984
|
-
const transformedNode = plugin.transformer ? transform(node, plugin.transformer) : node;
|
|
985
|
-
if (allowedSchemaNames !== void 0 && transformedNode.name && !allowedSchemaNames.has(transformedNode.name)) return;
|
|
986
|
-
const options = resolver.resolveOptions(transformedNode, {
|
|
987
|
-
options: plugin.options,
|
|
988
|
-
exclude,
|
|
989
|
-
include,
|
|
990
|
-
override
|
|
991
|
-
});
|
|
992
|
-
if (options === null) return;
|
|
993
|
-
const ctx = {
|
|
994
|
-
...generatorContext,
|
|
995
|
-
options
|
|
996
|
-
};
|
|
997
|
-
for (const gen of generators) {
|
|
998
|
-
if (!gen.schema) continue;
|
|
999
|
-
await applyHookResult(await gen.schema(transformedNode, ctx), driver, resolveRenderer(gen));
|
|
1000
|
-
}
|
|
1001
|
-
await driver.hooks.emit("kubb:generate:schema", transformedNode, ctx);
|
|
1002
|
-
},
|
|
1003
|
-
async operation(node) {
|
|
1004
|
-
const transformedNode = plugin.transformer ? transform(node, plugin.transformer) : node;
|
|
1005
|
-
const options = resolver.resolveOptions(transformedNode, {
|
|
1006
|
-
options: plugin.options,
|
|
1007
|
-
exclude,
|
|
1008
|
-
include,
|
|
1009
|
-
override
|
|
1010
|
-
});
|
|
1011
|
-
if (options !== null) {
|
|
1012
|
-
collectedOperations.push(transformedNode);
|
|
1013
|
-
const ctx = {
|
|
1014
|
-
...generatorContext,
|
|
1015
|
-
options
|
|
1016
|
-
};
|
|
1017
|
-
for (const gen of generators) {
|
|
1018
|
-
if (!gen.operation) continue;
|
|
1019
|
-
await applyHookResult(await gen.operation(transformedNode, ctx), driver, resolveRenderer(gen));
|
|
1020
|
-
}
|
|
1021
|
-
await driver.hooks.emit("kubb:generate:operation", transformedNode, ctx);
|
|
1022
|
-
}
|
|
1023
|
-
}
|
|
1024
|
-
});
|
|
1025
|
-
if (collectedOperations.length > 0) {
|
|
1026
|
-
const ctx = {
|
|
1027
|
-
...generatorContext,
|
|
1028
|
-
options: plugin.options
|
|
1029
|
-
};
|
|
1030
|
-
for (const gen of generators) {
|
|
1031
|
-
if (!gen.operations) continue;
|
|
1032
|
-
await applyHookResult(await gen.operations(collectedOperations, ctx), driver, resolveRenderer(gen));
|
|
1033
|
-
}
|
|
1034
|
-
await driver.hooks.emit("kubb:generate:operations", collectedOperations, ctx);
|
|
1035
|
-
}
|
|
1036
|
-
}
|
|
1037
|
-
async function safeBuild(setupResult) {
|
|
1038
|
-
const { driver, hooks, sources, storage } = setupResult;
|
|
1039
|
-
const failedPlugins = /* @__PURE__ */ new Set();
|
|
1040
|
-
const pluginTimings = /* @__PURE__ */ new Map();
|
|
1041
|
-
const config = driver.config;
|
|
1042
|
-
try {
|
|
1043
|
-
await driver.emitSetupHooks();
|
|
1044
|
-
if (driver.adapter && driver.inputNode) await hooks.emit("kubb:build:start", {
|
|
1045
|
-
config,
|
|
1046
|
-
adapter: driver.adapter,
|
|
1047
|
-
inputNode: driver.inputNode,
|
|
1048
|
-
getPlugin: driver.getPlugin.bind(driver),
|
|
1049
|
-
get files() {
|
|
1050
|
-
return driver.fileManager.files;
|
|
1051
|
-
},
|
|
1052
|
-
upsertFile: (...files) => driver.fileManager.upsert(...files)
|
|
1053
|
-
});
|
|
1054
|
-
for (const plugin of driver.plugins.values()) {
|
|
1055
|
-
const context = driver.getContext(plugin);
|
|
1056
|
-
const hrStart = process.hrtime();
|
|
1057
|
-
try {
|
|
1058
|
-
const timestamp = /* @__PURE__ */ new Date();
|
|
1059
|
-
await hooks.emit("kubb:plugin:start", { plugin });
|
|
1060
|
-
await hooks.emit("kubb:debug", {
|
|
1061
|
-
date: timestamp,
|
|
1062
|
-
logs: ["Starting plugin...", ` • Plugin Name: ${plugin.name}`]
|
|
1063
|
-
});
|
|
1064
|
-
if (plugin.generators?.length || driver.hasRegisteredGenerators(plugin.name)) await runPluginAstHooks(plugin, context);
|
|
1065
|
-
const duration = getElapsedMs(hrStart);
|
|
1066
|
-
pluginTimings.set(plugin.name, duration);
|
|
1067
|
-
await hooks.emit("kubb:plugin:end", {
|
|
1068
|
-
plugin,
|
|
1069
|
-
duration,
|
|
1070
|
-
success: true,
|
|
1071
|
-
config,
|
|
1072
|
-
get files() {
|
|
1073
|
-
return driver.fileManager.files;
|
|
1074
|
-
},
|
|
1075
|
-
upsertFile: (...files) => driver.fileManager.upsert(...files)
|
|
1076
|
-
});
|
|
1077
|
-
await hooks.emit("kubb:debug", {
|
|
1078
|
-
date: /* @__PURE__ */ new Date(),
|
|
1079
|
-
logs: [`✓ Plugin started successfully (${formatMs(duration)})`]
|
|
1080
|
-
});
|
|
1081
|
-
} catch (caughtError) {
|
|
1082
|
-
const error = caughtError;
|
|
1083
|
-
const errorTimestamp = /* @__PURE__ */ new Date();
|
|
1084
|
-
const duration = getElapsedMs(hrStart);
|
|
1085
|
-
await hooks.emit("kubb:plugin:end", {
|
|
1086
|
-
plugin,
|
|
1087
|
-
duration,
|
|
1088
|
-
success: false,
|
|
1089
|
-
error,
|
|
1090
|
-
config,
|
|
1091
|
-
get files() {
|
|
1092
|
-
return driver.fileManager.files;
|
|
1093
|
-
},
|
|
1094
|
-
upsertFile: (...files) => driver.fileManager.upsert(...files)
|
|
1095
|
-
});
|
|
1096
|
-
await hooks.emit("kubb:debug", {
|
|
1097
|
-
date: errorTimestamp,
|
|
1098
|
-
logs: [
|
|
1099
|
-
"✗ Plugin start failed",
|
|
1100
|
-
` • Plugin Name: ${plugin.name}`,
|
|
1101
|
-
` • Error: ${error.constructor.name} - ${error.message}`,
|
|
1102
|
-
" • Stack Trace:",
|
|
1103
|
-
error.stack || "No stack trace available"
|
|
1104
|
-
]
|
|
1105
|
-
});
|
|
1106
|
-
failedPlugins.add({
|
|
1107
|
-
plugin,
|
|
1108
|
-
error
|
|
1109
|
-
});
|
|
1110
|
-
}
|
|
1111
|
-
}
|
|
1112
|
-
await hooks.emit("kubb:plugins:end", {
|
|
1113
|
-
config,
|
|
1114
|
-
get files() {
|
|
1115
|
-
return driver.fileManager.files;
|
|
1116
|
-
},
|
|
1117
|
-
upsertFile: (...files) => driver.fileManager.upsert(...files)
|
|
1118
|
-
});
|
|
1119
|
-
const files = driver.fileManager.files;
|
|
1120
|
-
const parsersMap = /* @__PURE__ */ new Map();
|
|
1121
|
-
for (const parser of config.parsers) if (parser.extNames) for (const extname of parser.extNames) parsersMap.set(extname, parser);
|
|
1122
|
-
const fileProcessor = new FileProcessor();
|
|
1123
|
-
await hooks.emit("kubb:debug", {
|
|
1124
|
-
date: /* @__PURE__ */ new Date(),
|
|
1125
|
-
logs: [`Writing ${files.length} files...`]
|
|
1126
|
-
});
|
|
1127
|
-
await fileProcessor.run(files, {
|
|
1128
|
-
parsers: parsersMap,
|
|
1129
|
-
extension: config.output.extension,
|
|
1130
|
-
onStart: async (processingFiles) => {
|
|
1131
|
-
await hooks.emit("kubb:files:processing:start", { files: processingFiles });
|
|
1132
|
-
},
|
|
1133
|
-
onUpdate: async ({ file, source, processed, total, percentage }) => {
|
|
1134
|
-
await hooks.emit("kubb:file:processing:update", {
|
|
1135
|
-
file,
|
|
1136
|
-
source,
|
|
1137
|
-
processed,
|
|
1138
|
-
total,
|
|
1139
|
-
percentage,
|
|
1140
|
-
config
|
|
1141
|
-
});
|
|
1142
|
-
if (source) {
|
|
1143
|
-
await storage?.setItem(file.path, source);
|
|
1144
|
-
sources.set(file.path, source);
|
|
1145
|
-
}
|
|
1146
|
-
},
|
|
1147
|
-
onEnd: async (processedFiles) => {
|
|
1148
|
-
await hooks.emit("kubb:files:processing:end", { files: processedFiles });
|
|
1149
|
-
await hooks.emit("kubb:debug", {
|
|
1150
|
-
date: /* @__PURE__ */ new Date(),
|
|
1151
|
-
logs: [`✓ File write process completed for ${processedFiles.length} files`]
|
|
1152
|
-
});
|
|
1153
|
-
}
|
|
1154
|
-
});
|
|
1155
|
-
await hooks.emit("kubb:build:end", {
|
|
1156
|
-
files,
|
|
1157
|
-
config,
|
|
1158
|
-
outputDir: resolve(config.root, config.output.path)
|
|
1159
|
-
});
|
|
1160
|
-
return {
|
|
1161
|
-
failedPlugins,
|
|
1162
|
-
files,
|
|
1163
|
-
driver,
|
|
1164
|
-
pluginTimings,
|
|
1165
|
-
sources
|
|
1166
|
-
};
|
|
1167
|
-
} catch (error) {
|
|
1168
|
-
return {
|
|
1169
|
-
failedPlugins,
|
|
1170
|
-
files: [],
|
|
1171
|
-
driver,
|
|
1172
|
-
pluginTimings,
|
|
1173
|
-
error,
|
|
1174
|
-
sources
|
|
1175
|
-
};
|
|
1176
|
-
} finally {
|
|
1177
|
-
driver.dispose();
|
|
1178
|
-
}
|
|
1179
|
-
}
|
|
1180
|
-
async function build(setupResult) {
|
|
1181
|
-
const { files, driver, failedPlugins, pluginTimings, error, sources } = await safeBuild(setupResult);
|
|
1182
|
-
if (error) throw error;
|
|
1183
|
-
if (failedPlugins.size > 0) {
|
|
1184
|
-
const errors = [...failedPlugins].map(({ error }) => error);
|
|
1185
|
-
throw new BuildError(`Build Error with ${failedPlugins.size} failed plugins`, { errors });
|
|
1186
|
-
}
|
|
280
|
+
function getDiagnosticInfo() {
|
|
1187
281
|
return {
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
sources
|
|
282
|
+
nodeVersion: version,
|
|
283
|
+
KubbVersion: version$1,
|
|
284
|
+
platform: process.platform,
|
|
285
|
+
arch: process.arch,
|
|
286
|
+
cwd: process.cwd()
|
|
1194
287
|
};
|
|
1195
288
|
}
|
|
1196
|
-
function
|
|
1197
|
-
|
|
1198
|
-
type: "paths",
|
|
1199
|
-
paths: config.input.map((i) => new URLPath(i.path).isURL ? i.path : resolve(config.root, i.path))
|
|
1200
|
-
};
|
|
1201
|
-
if ("data" in config.input) return {
|
|
1202
|
-
type: "data",
|
|
1203
|
-
data: config.input.data
|
|
1204
|
-
};
|
|
1205
|
-
if (new URLPath(config.input.path).isURL) return {
|
|
1206
|
-
type: "path",
|
|
1207
|
-
path: config.input.path
|
|
1208
|
-
};
|
|
1209
|
-
return {
|
|
1210
|
-
type: "path",
|
|
1211
|
-
path: resolve(config.root, config.input.path)
|
|
1212
|
-
};
|
|
289
|
+
function isInputPath(config) {
|
|
290
|
+
return typeof config?.input === "object" && config.input !== null && "path" in config.input;
|
|
1213
291
|
}
|
|
1214
292
|
/**
|
|
1215
|
-
*
|
|
293
|
+
* Kubb code-generation instance bound to a single config entry. Resolves the user
|
|
294
|
+
* config during `setup()` and shares `hooks`, `storage`, `driver`, and `config` across
|
|
295
|
+
* the `setup → build` lifecycle.
|
|
1216
296
|
*
|
|
1217
|
-
*
|
|
1218
|
-
* `setup()`. The instance then holds shared state (`hooks`, `sources`, `driver`, `config`)
|
|
1219
|
-
* across the `setup → build` lifecycle. Attach event listeners to `kubb.hooks` before
|
|
1220
|
-
* calling `setup()` or `build()`.
|
|
297
|
+
* Attach event listeners to `.hooks` before calling `setup()` or `build()`.
|
|
1221
298
|
*
|
|
1222
299
|
* @example
|
|
1223
300
|
* ```ts
|
|
1224
301
|
* const kubb = createKubb(userConfig)
|
|
1225
|
-
*
|
|
1226
|
-
* kubb.hooks.on('kubb:plugin:end', ({ plugin, duration }) => {
|
|
1227
|
-
* console.log(`${plugin.name} completed in ${duration}ms`)
|
|
1228
|
-
* })
|
|
1229
|
-
*
|
|
302
|
+
* kubb.hooks.on('kubb:plugin:end', ({ plugin, duration }) => console.log(plugin.name, duration))
|
|
1230
303
|
* const { files, failedPlugins } = await kubb.safeBuild()
|
|
1231
304
|
* ```
|
|
1232
305
|
*/
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
|
|
306
|
+
var Kubb = class {
|
|
307
|
+
hooks;
|
|
308
|
+
#userConfig;
|
|
309
|
+
#config = null;
|
|
310
|
+
#driver = null;
|
|
311
|
+
#storage = null;
|
|
312
|
+
constructor(userConfig, options = {}) {
|
|
313
|
+
this.#userConfig = userConfig;
|
|
314
|
+
this.hooks = options.hooks ?? new AsyncEventEmitter();
|
|
315
|
+
}
|
|
316
|
+
get storage() {
|
|
317
|
+
if (!this.#storage) throw new Error("[kubb] setup() must be called before accessing storage");
|
|
318
|
+
return this.#storage;
|
|
319
|
+
}
|
|
320
|
+
get driver() {
|
|
321
|
+
if (!this.#driver) throw new Error("[kubb] setup() must be called before accessing driver");
|
|
322
|
+
return this.#driver;
|
|
323
|
+
}
|
|
324
|
+
get config() {
|
|
325
|
+
if (!this.#config) throw new Error("[kubb] setup() must be called before accessing config");
|
|
326
|
+
return this.#config;
|
|
327
|
+
}
|
|
328
|
+
/**
|
|
329
|
+
* Resolves config and initializes the driver. `build()` calls this automatically.
|
|
330
|
+
*/
|
|
331
|
+
async setup() {
|
|
332
|
+
const config = resolveConfig(this.#userConfig);
|
|
333
|
+
const driver = new KubbDriver(config, { hooks: this.hooks });
|
|
334
|
+
const storage = createSourcesView(config.storage);
|
|
335
|
+
await this.hooks.emit("kubb:debug", {
|
|
336
|
+
date: /* @__PURE__ */ new Date(),
|
|
337
|
+
logs: this.#configLogs(config)
|
|
338
|
+
});
|
|
339
|
+
if (isInputPath(this.#userConfig) && !new URLPath(this.#userConfig.input.path).isURL) try {
|
|
340
|
+
await exists(this.#userConfig.input.path);
|
|
341
|
+
await this.hooks.emit("kubb:debug", {
|
|
342
|
+
date: /* @__PURE__ */ new Date(),
|
|
343
|
+
logs: [`✓ Input file validated: ${this.#userConfig.input.path}`]
|
|
344
|
+
});
|
|
345
|
+
} catch (caughtError) {
|
|
346
|
+
throw new Error(`Cannot read file/URL defined in \`input.path\` or set with \`kubb generate PATH\` in the CLI of your Kubb config ${this.#userConfig.input.path}`, { cause: caughtError });
|
|
1259
347
|
}
|
|
1260
|
-
|
|
1261
|
-
|
|
348
|
+
if (config.output.clean) {
|
|
349
|
+
await this.hooks.emit("kubb:debug", {
|
|
350
|
+
date: /* @__PURE__ */ new Date(),
|
|
351
|
+
logs: ["Cleaning output directories", ` • Output: ${config.output.path}`]
|
|
352
|
+
});
|
|
353
|
+
await config.storage.clear(resolve(config.root, config.output.path));
|
|
354
|
+
}
|
|
355
|
+
await driver.setup();
|
|
356
|
+
this.#config = config;
|
|
357
|
+
this.#driver = driver;
|
|
358
|
+
this.#storage = storage;
|
|
359
|
+
}
|
|
360
|
+
/**
|
|
361
|
+
* Runs the full pipeline and throws on any plugin error.
|
|
362
|
+
* Automatically calls `setup()` if needed.
|
|
363
|
+
*/
|
|
364
|
+
async build() {
|
|
365
|
+
const out = await this.safeBuild();
|
|
366
|
+
if (out.error) throw out.error;
|
|
367
|
+
if (out.failedPlugins.size > 0) {
|
|
368
|
+
const errors = [...out.failedPlugins].map(({ error }) => error);
|
|
369
|
+
throw new BuildError(`Build Error with ${out.failedPlugins.size} failed plugins`, { errors });
|
|
370
|
+
}
|
|
371
|
+
return out;
|
|
372
|
+
}
|
|
373
|
+
/**
|
|
374
|
+
* Runs the full pipeline and captures errors in `BuildOutput` instead of throwing.
|
|
375
|
+
* Automatically calls `setup()` if needed.
|
|
376
|
+
*/
|
|
377
|
+
async safeBuild() {
|
|
378
|
+
try {
|
|
379
|
+
var _usingCtx$1 = _usingCtx();
|
|
380
|
+
if (!this.#driver) await this.setup();
|
|
381
|
+
const cleanup = _usingCtx$1.u(this);
|
|
382
|
+
const driver = cleanup.driver;
|
|
383
|
+
const storage = cleanup.storage;
|
|
384
|
+
const { failedPlugins, pluginTimings, error } = await driver.run({ storage });
|
|
385
|
+
return {
|
|
386
|
+
failedPlugins,
|
|
387
|
+
files: driver.fileManager.files,
|
|
388
|
+
driver,
|
|
389
|
+
pluginTimings,
|
|
390
|
+
storage,
|
|
391
|
+
...error ? { error } : {}
|
|
392
|
+
};
|
|
393
|
+
} catch (_) {
|
|
394
|
+
_usingCtx$1.e = _;
|
|
395
|
+
} finally {
|
|
396
|
+
_usingCtx$1.d();
|
|
397
|
+
}
|
|
398
|
+
}
|
|
399
|
+
dispose() {
|
|
400
|
+
this.#driver?.dispose();
|
|
401
|
+
}
|
|
402
|
+
[Symbol.dispose]() {
|
|
403
|
+
this.dispose();
|
|
404
|
+
}
|
|
405
|
+
#configLogs(config) {
|
|
406
|
+
const u = this.#userConfig;
|
|
407
|
+
const diag = getDiagnosticInfo();
|
|
408
|
+
return [
|
|
409
|
+
"Configuration:",
|
|
410
|
+
` • Name: ${u.name || "unnamed"}`,
|
|
411
|
+
` • Root: ${u.root || process.cwd()}`,
|
|
412
|
+
` • Output: ${u.output?.path || "not specified"}`,
|
|
413
|
+
` • Plugins: ${u.plugins?.length || 0}`,
|
|
414
|
+
"Output Settings:",
|
|
415
|
+
` • Storage: ${config.storage.name}`,
|
|
416
|
+
` • Formatter: ${u.output?.format || "none"}`,
|
|
417
|
+
` • Linter: ${u.output?.lint || "none"}`,
|
|
418
|
+
`Running adapter: ${config.adapter?.name || "none"}`,
|
|
419
|
+
"Environment:",
|
|
420
|
+
Object.entries(diag).map(([key, value]) => ` • ${key}: ${value}`).join("\n")
|
|
421
|
+
];
|
|
422
|
+
}
|
|
423
|
+
};
|
|
424
|
+
/**
|
|
425
|
+
* Factory for {@link Kubb}. Equivalent to `new Kubb(userConfig, options)` and kept
|
|
426
|
+
* as the canonical public entry point.
|
|
427
|
+
*/
|
|
428
|
+
function createKubb(userConfig, options = {}) {
|
|
429
|
+
return new Kubb(userConfig, options);
|
|
1262
430
|
}
|
|
1263
431
|
//#endregion
|
|
1264
432
|
//#region src/createRenderer.ts
|
|
1265
433
|
/**
|
|
1266
|
-
*
|
|
1267
|
-
*
|
|
1268
|
-
* Wrap your renderer factory function with this helper to register it as the
|
|
1269
|
-
* renderer for a generator. Core will call this factory once per render cycle
|
|
1270
|
-
* to obtain a fresh renderer instance.
|
|
434
|
+
* Wraps a renderer factory for use in generator definitions.
|
|
1271
435
|
*
|
|
1272
436
|
* @example
|
|
1273
437
|
* ```ts
|
|
1274
|
-
* // packages/renderer-jsx/src/index.ts
|
|
1275
438
|
* export const jsxRenderer = createRenderer(() => {
|
|
1276
439
|
* const runtime = new Runtime()
|
|
1277
440
|
* return {
|
|
1278
441
|
* async render(element) { await runtime.render(element) },
|
|
1279
442
|
* get files() { return runtime.nodes },
|
|
443
|
+
* dispose() { runtime.unmount() },
|
|
1280
444
|
* unmount(error) { runtime.unmount(error) },
|
|
1281
445
|
* }
|
|
1282
446
|
* })
|
|
1283
|
-
*
|
|
1284
|
-
* // packages/plugin-zod/src/generators/zodGenerator.tsx
|
|
1285
|
-
* import { jsxRenderer } from '@kubb/renderer-jsx'
|
|
1286
|
-
* export const zodGenerator = defineGenerator<PluginZod>({
|
|
1287
|
-
* name: 'zod',
|
|
1288
|
-
* renderer: jsxRenderer,
|
|
1289
|
-
* schema(node, options) { return <File ...>...</File> },
|
|
1290
|
-
* })
|
|
1291
447
|
* ```
|
|
1292
448
|
*/
|
|
1293
449
|
function createRenderer(factory) {
|
|
@@ -1308,7 +464,11 @@ function defineGenerator(generator) {
|
|
|
1308
464
|
/**
|
|
1309
465
|
* Wraps a logger definition into a typed {@link Logger}.
|
|
1310
466
|
*
|
|
1311
|
-
*
|
|
467
|
+
* The optional second type parameter `TInstallReturn` allows loggers to return
|
|
468
|
+
* a value from `install` — for example, a sink factory that the caller can
|
|
469
|
+
* forward to hook execution.
|
|
470
|
+
*
|
|
471
|
+
* @example Basic logger
|
|
1312
472
|
* ```ts
|
|
1313
473
|
* export const myLogger = defineLogger({
|
|
1314
474
|
* name: 'my-logger',
|
|
@@ -1318,6 +478,17 @@ function defineGenerator(generator) {
|
|
|
1318
478
|
* },
|
|
1319
479
|
* })
|
|
1320
480
|
* ```
|
|
481
|
+
*
|
|
482
|
+
* @example Logger that returns a hook sink factory
|
|
483
|
+
* ```ts
|
|
484
|
+
* export const myLogger = defineLogger<LoggerOptions, HookSinkFactory>({
|
|
485
|
+
* name: 'my-logger',
|
|
486
|
+
* install(context, options) {
|
|
487
|
+
* // … register event handlers …
|
|
488
|
+
* return (commandWithArgs) => ({ onStdout: console.log })
|
|
489
|
+
* },
|
|
490
|
+
* })
|
|
491
|
+
* ```
|
|
1321
492
|
*/
|
|
1322
493
|
function defineLogger(logger) {
|
|
1323
494
|
return logger;
|
|
@@ -1388,34 +559,6 @@ function defineParser(parser) {
|
|
|
1388
559
|
return parser;
|
|
1389
560
|
}
|
|
1390
561
|
//#endregion
|
|
1391
|
-
//#region src/definePlugin.ts
|
|
1392
|
-
/**
|
|
1393
|
-
* Wraps a factory function and returns a typed `Plugin` with lifecycle handlers grouped under `hooks`.
|
|
1394
|
-
*
|
|
1395
|
-
* Handlers live in a single `hooks` object (inspired by Astro integrations).
|
|
1396
|
-
* All lifecycle events from `KubbHooks` are available for subscription.
|
|
1397
|
-
*
|
|
1398
|
-
* @note For real plugins, use a `PluginFactoryOptions` type parameter to get type-safe context in `kubb:plugin:setup`.
|
|
1399
|
-
* Plugin names should follow the convention `plugin-<feature>` (e.g., `plugin-react-query`, `plugin-zod`).
|
|
1400
|
-
*
|
|
1401
|
-
* @example
|
|
1402
|
-
* ```ts
|
|
1403
|
-
* import { definePlugin } from '@kubb/core'
|
|
1404
|
-
*
|
|
1405
|
-
* export const pluginTs = definePlugin((options: { prefix?: string } = {}) => ({
|
|
1406
|
-
* name: 'plugin-ts',
|
|
1407
|
-
* hooks: {
|
|
1408
|
-
* 'kubb:plugin:setup'(ctx) {
|
|
1409
|
-
* ctx.setResolver(resolverTs)
|
|
1410
|
-
* },
|
|
1411
|
-
* },
|
|
1412
|
-
* }))
|
|
1413
|
-
* ```
|
|
1414
|
-
*/
|
|
1415
|
-
function definePlugin(factory) {
|
|
1416
|
-
return (options) => factory(options ?? {});
|
|
1417
|
-
}
|
|
1418
|
-
//#endregion
|
|
1419
562
|
//#region src/storages/memoryStorage.ts
|
|
1420
563
|
/**
|
|
1421
564
|
* In-memory storage driver. Useful for testing and dry-run scenarios where
|
|
@@ -1466,6 +609,6 @@ const memoryStorage = createStorage(() => {
|
|
|
1466
609
|
};
|
|
1467
610
|
});
|
|
1468
611
|
//#endregion
|
|
1469
|
-
export { AsyncEventEmitter, FileManager, FileProcessor,
|
|
612
|
+
export { AsyncEventEmitter, FileManager, FileProcessor, KubbDriver, URLPath, ast, createAdapter, createKubb, createRenderer, createStorage, defineGenerator, defineLogger, defineMiddleware, defineParser, definePlugin, defineResolver, fsStorage, isInputPath, logLevel, memoryStorage };
|
|
1470
613
|
|
|
1471
614
|
//# sourceMappingURL=index.js.map
|