@kubb/cli 3.16.1 → 3.16.3

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.
Files changed (49) hide show
  1. package/dist/chunk-DWy1uDak.cjs +39 -0
  2. package/dist/generate-B9o-QjSi.cjs +6641 -0
  3. package/dist/generate-B9o-QjSi.cjs.map +1 -0
  4. package/dist/generate-BpnRmhKq.cjs +255 -0
  5. package/dist/generate-BpnRmhKq.cjs.map +1 -0
  6. package/dist/generate-COcFbC_i.js +254 -0
  7. package/dist/generate-COcFbC_i.js.map +1 -0
  8. package/dist/generate-CUJ2_P-U.js +6669 -0
  9. package/dist/generate-CUJ2_P-U.js.map +1 -0
  10. package/dist/index.cjs +53 -58
  11. package/dist/index.cjs.map +1 -1
  12. package/dist/index.d.cts +3 -1
  13. package/dist/index.d.ts +3 -1
  14. package/dist/index.js +52 -48
  15. package/dist/index.js.map +1 -1
  16. package/dist/mcp-Cmiw4RpU.cjs +44 -0
  17. package/dist/mcp-Cmiw4RpU.cjs.map +1 -0
  18. package/dist/mcp-DcaOAt6B.js +43 -0
  19. package/dist/mcp-DcaOAt6B.js.map +1 -0
  20. package/dist/validate-ClewPP5U.cjs +55 -0
  21. package/dist/validate-ClewPP5U.cjs.map +1 -0
  22. package/dist/validate-DD5UaudC.js +54 -0
  23. package/dist/validate-DD5UaudC.js.map +1 -0
  24. package/package.json +21 -21
  25. package/src/commands/generate.ts +10 -13
  26. package/src/commands/mcp.ts +2 -2
  27. package/src/runners/generate.ts +4 -4
  28. package/src/utils/Writables.ts +2 -2
  29. package/src/utils/executeHooks.ts +3 -3
  30. package/src/utils/getSummary.ts +8 -8
  31. package/src/utils/watcher.ts +3 -3
  32. package/dist/chunk-MKHKV2HH.cjs +0 -52
  33. package/dist/chunk-MKHKV2HH.cjs.map +0 -1
  34. package/dist/generate-65TMSGIL.js +0 -273
  35. package/dist/generate-65TMSGIL.js.map +0 -1
  36. package/dist/generate-HUWFJ4IA.js +0 -209
  37. package/dist/generate-HUWFJ4IA.js.map +0 -1
  38. package/dist/generate-J27CF4EQ.cjs +0 -7590
  39. package/dist/generate-J27CF4EQ.cjs.map +0 -1
  40. package/dist/generate-YT6MCGVO.cjs +0 -311
  41. package/dist/generate-YT6MCGVO.cjs.map +0 -1
  42. package/dist/mcp-C35BGKG3.cjs +0 -57
  43. package/dist/mcp-C35BGKG3.cjs.map +0 -1
  44. package/dist/mcp-LTBICXYR.js +0 -49
  45. package/dist/mcp-LTBICXYR.js.map +0 -1
  46. package/dist/validate-534U6NKH.cjs +0 -67
  47. package/dist/validate-534U6NKH.cjs.map +0 -1
  48. package/dist/validate-ONN45RYY.js +0 -58
  49. package/dist/validate-ONN45RYY.js.map +0 -1
@@ -1,19 +1,16 @@
1
- import { defineCommand, showUsage } from 'citty'
1
+ import path from 'node:path'
2
+ import * as process from 'node:process'
3
+ import { isInputPath, PromiseManager } from '@kubb/core'
4
+ import { createLogger, LogMapper } from '@kubb/core/logger'
2
5
  import type { ArgsDef, ParsedArgs } from 'citty'
3
- import { colors } from 'consola/utils'
4
-
6
+ import { defineCommand, showUsage } from 'citty'
7
+ import type { SingleBar } from 'cli-progress'
8
+ import open from 'open'
9
+ import pc from 'picocolors'
5
10
  import { getConfig } from '../utils/getConfig.ts'
6
11
  import { getCosmiConfig } from '../utils/getCosmiConfig.ts'
7
12
  import { startWatcher } from '../utils/watcher.ts'
8
13
 
9
- import path from 'node:path'
10
- import * as process from 'node:process'
11
- import { PromiseManager, isInputPath } from '@kubb/core'
12
- import { LogMapper, createLogger } from '@kubb/core/logger'
13
-
14
- import open from 'open'
15
- import type { SingleBar } from 'cli-progress'
16
-
17
14
  declare global {
18
15
  var isDevtoolsEnabled: any
19
16
  }
@@ -90,7 +87,7 @@ const command = defineCommand({
90
87
  logger.emit('start', 'Loading config')
91
88
 
92
89
  const result = await getCosmiConfig('kubb', args.config)
93
- logger.emit('success', `Config loaded(${colors.dim(path.relative(process.cwd(), result.filepath))})`)
90
+ logger.emit('success', `Config loaded(${pc.dim(path.relative(process.cwd(), result.filepath))})`)
94
91
 
95
92
  const config = await getConfig(result, args)
96
93
 
@@ -167,7 +164,7 @@ const command = defineCommand({
167
164
  if (isInputPath(config)) {
168
165
  return startWatcher([input || config.input.path], async (paths) => {
169
166
  await start()
170
- logger.emit('start', colors.yellow(colors.bold(`Watching for changes in ${paths.join(' and ')}`)))
167
+ logger.emit('start', pc.yellow(pc.bold(`Watching for changes in ${paths.join(' and ')}`)))
171
168
  })
172
169
  }
173
170
  }
@@ -1,7 +1,7 @@
1
1
  import type { ArgsDef, ParsedArgs } from 'citty'
2
2
  import { defineCommand, showUsage } from 'citty'
3
3
  import consola from 'consola'
4
- import { colors } from 'consola/utils'
4
+ import pc from 'picocolors'
5
5
  import { createJiti } from 'jiti'
6
6
 
7
7
  const jiti = createJiti(import.meta.url, {
@@ -42,7 +42,7 @@ const command = defineCommand({
42
42
  const { startServer } = mod
43
43
  try {
44
44
  consola.start('Starting MCP server...')
45
- consola.warn(colors.yellow('This feature is still under development — use with caution'))
45
+ consola.warn(pc.yellow('This feature is still under development — use with caution'))
46
46
  await startServer()
47
47
  } catch (e) {
48
48
  consola.error((e as Error)?.message)
@@ -2,7 +2,7 @@ import process from 'node:process'
2
2
  import { type Config, safeBuild, setup } from '@kubb/core'
3
3
  import { createLogger, LogMapper } from '@kubb/core/logger'
4
4
  import { Presets, SingleBar } from 'cli-progress'
5
- import { colors } from 'consola/utils'
5
+ import pc from 'picocolors'
6
6
  import type { Args } from '../commands/generate.ts'
7
7
  import { executeHooks } from '../utils/executeHooks.ts'
8
8
  import { getErrorCauses } from '../utils/getErrorCauses.ts'
@@ -83,7 +83,7 @@ export async function generate({ input, config, progressCache, args }: GenerateP
83
83
  logger,
84
84
  })
85
85
 
86
- logger.emit('start', `Building ${logger.logLevel !== LogMapper.silent ? colors.dim(inputPath!) : ''}`)
86
+ logger.emit('start', `Building ${logger.logLevel !== LogMapper.silent ? pc.dim(inputPath!) : ''}`)
87
87
 
88
88
  const { files, error } = await safeBuild({
89
89
  config: definedConfig,
@@ -109,7 +109,7 @@ export async function generate({ input, config, progressCache, args }: GenerateP
109
109
 
110
110
  if (error && logger.consola) {
111
111
  logger.consola?.resumeLogs()
112
- logger.consola.error(`Build failed ${logger.logLevel !== LogMapper.silent ? colors.dim(inputPath!) : ''}`)
112
+ logger.consola.error(`Build failed ${logger.logLevel !== LogMapper.silent ? pc.dim(inputPath!) : ''}`)
113
113
 
114
114
  logger.consola.box({
115
115
  title: `${config.name || ''}`,
@@ -137,7 +137,7 @@ export async function generate({ input, config, progressCache, args }: GenerateP
137
137
  await executeHooks({ hooks: config.hooks, logger })
138
138
  }
139
139
 
140
- logger.consola?.log(`⚡Build completed ${logger.logLevel !== LogMapper.silent ? colors.dim(inputPath!) : ''}`)
140
+ logger.consola?.log(`⚡Build completed ${logger.logLevel !== LogMapper.silent ? pc.dim(inputPath!) : ''}`)
141
141
 
142
142
  logger.consola?.box({
143
143
  title: `${config.name || ''}`,
@@ -1,6 +1,6 @@
1
1
  import { Writable } from 'node:stream'
2
2
 
3
- import { colors } from 'consola/utils'
3
+ import pc from 'picocolors'
4
4
 
5
5
  import * as process from 'node:process'
6
6
  import type { WritableOptions } from 'node:stream'
@@ -16,7 +16,7 @@ export class ConsolaWritable extends Writable {
16
16
  this.consola = consola
17
17
  }
18
18
  _write(chunk: any, _encoding: BufferEncoding, callback: (error?: Error | null) => void): void {
19
- process.stdout.write(`${colors.dim(chunk?.toString())}`)
19
+ process.stdout.write(`${pc.dim(chunk?.toString())}`)
20
20
 
21
21
  callback()
22
22
  }
@@ -1,7 +1,7 @@
1
1
  import type { Logger } from '@kubb/core/logger'
2
2
  import { execa } from 'execa'
3
3
  import { parseArgsStringToArgv } from 'string-argv'
4
- import { colors } from 'consola/utils'
4
+ import pc from 'picocolors'
5
5
 
6
6
  import { ConsolaWritable } from './Writables.ts'
7
7
 
@@ -24,7 +24,7 @@ export async function executeHooks({ hooks, logger }: ExecutingHooksProps): Prom
24
24
  continue
25
25
  }
26
26
 
27
- logger?.emit('start', `Executing hook ${logger.logLevel !== LogMapper.silent ? colors.dim(command) : ''}`)
27
+ logger?.emit('start', `Executing hook ${logger.logLevel !== LogMapper.silent ? pc.dim(command) : ''}`)
28
28
 
29
29
  await execa(cmd, _args, {
30
30
  detached: true,
@@ -32,7 +32,7 @@ export async function executeHooks({ hooks, logger }: ExecutingHooksProps): Prom
32
32
  stripFinalNewline: true,
33
33
  })
34
34
 
35
- logger?.emit('success', `Executed hook ${logger.logLevel !== LogMapper.silent ? colors.dim(command) : ''}`)
35
+ logger?.emit('success', `Executed hook ${logger.logLevel !== LogMapper.silent ? pc.dim(command) : ''}`)
36
36
  }
37
37
 
38
38
  logger?.emit('success', 'Executed hooks')
@@ -2,7 +2,7 @@ import path from 'node:path'
2
2
 
3
3
  import { randomCliColour } from '@kubb/core/logger'
4
4
 
5
- import { colors } from 'consola/utils'
5
+ import pc from 'picocolors'
6
6
 
7
7
  import { parseHrtimeToSeconds } from './parseHrtimeToSeconds.ts'
8
8
 
@@ -32,20 +32,20 @@ export function getSummary({ pluginManager, filesCreated, status, hrStart, confi
32
32
  const meta = {
33
33
  plugins:
34
34
  status === 'success'
35
- ? `${colors.green(`${buildStartPlugins.length} successful`)}, ${pluginsCount} total`
36
- : `${colors.red(`${failedPlugins?.length ?? 1} failed`)}, ${pluginsCount} total`,
35
+ ? `${pc.green(`${buildStartPlugins.length} successful`)}, ${pluginsCount} total`
36
+ : `${pc.red(`${failedPlugins?.length ?? 1} failed`)}, ${pluginsCount} total`,
37
37
  pluginsFailed: status === 'failed' ? failedPlugins?.map((name) => randomCliColour(name))?.join(', ') : undefined,
38
38
  filesCreated: filesCreated,
39
- time: `${colors.yellow(`${elapsedSeconds}s`)}`,
39
+ time: `${pc.yellow(`${elapsedSeconds}s`)}`,
40
40
  output: path.isAbsolute(config.root) ? path.resolve(config.root, config.output.path) : config.root,
41
41
  } as const
42
42
 
43
43
  logs.add(
44
44
  [
45
- [`${colors.bold('Plugins:')} ${meta.plugins}`, true],
46
- [`${colors.dim('Failed:')} ${meta.pluginsFailed || 'none'}`, !!meta.pluginsFailed],
47
- [`${colors.bold('Generated:')} ${meta.filesCreated} files in ${meta.time}`, true],
48
- [`${colors.bold('Output:')} ${meta.output}`, true],
45
+ [`${pc.bold('Plugins:')} ${meta.plugins}`, true],
46
+ [`${pc.dim('Failed:')} ${meta.pluginsFailed || 'none'}`, !!meta.pluginsFailed],
47
+ [`${pc.bold('Generated:')} ${meta.filesCreated} files in ${meta.time}`, true],
48
+ [`${pc.bold('Output:')} ${meta.output}`, true],
49
49
  ]
50
50
  .map((item) => {
51
51
  if (item.at(1)) {
@@ -1,5 +1,5 @@
1
1
  import { createLogger } from '@kubb/core/logger'
2
- import { colors } from 'consola/utils'
2
+ import pc from 'picocolors'
3
3
 
4
4
  export async function startWatcher(path: string[], cb: (path: string[]) => Promise<void>): Promise<void> {
5
5
  const { watch } = await import('chokidar')
@@ -12,12 +12,12 @@ export async function startWatcher(path: string[], cb: (path: string[]) => Promi
12
12
  ignored,
13
13
  })
14
14
  watcher.on('all', (type, file) => {
15
- logger?.emit('info', colors.yellow(colors.bold(`Change detected: ${type} ${file}`)))
15
+ logger?.emit('info', pc.yellow(pc.bold(`Change detected: ${type} ${file}`)))
16
16
 
17
17
  try {
18
18
  cb(path)
19
19
  } catch (_e) {
20
- logger?.emit('warning', colors.red('Watcher failed'))
20
+ logger?.emit('warning', pc.red('Watcher failed'))
21
21
  }
22
22
  })
23
23
  }
@@ -1,52 +0,0 @@
1
- 'use strict';
2
-
3
- var __create = Object.create;
4
- var __defProp = Object.defineProperty;
5
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
6
- var __getOwnPropNames = Object.getOwnPropertyNames;
7
- var __getProtoOf = Object.getPrototypeOf;
8
- var __hasOwnProp = Object.prototype.hasOwnProperty;
9
- var __require = /* @__PURE__ */ ((x) => typeof require !== "undefined" ? require : typeof Proxy !== "undefined" ? new Proxy(x, {
10
- get: (a, b) => (typeof require !== "undefined" ? require : a)[b]
11
- }) : x)(function(x) {
12
- if (typeof require !== "undefined") return require.apply(this, arguments);
13
- throw Error('Dynamic require of "' + x + '" is not supported');
14
- });
15
- var __esm = (fn, res) => function __init() {
16
- return fn && (res = (0, fn[__getOwnPropNames(fn)[0]])(fn = 0)), res;
17
- };
18
- var __commonJS = (cb, mod) => function __require2() {
19
- return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
20
- };
21
- var __copyProps = (to, from, except, desc) => {
22
- if (from && typeof from === "object" || typeof from === "function") {
23
- for (let key of __getOwnPropNames(from))
24
- if (!__hasOwnProp.call(to, key) && key !== except)
25
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
26
- }
27
- return to;
28
- };
29
- var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
30
- // If the importer is in node compatibility mode or this is not an ESM
31
- // file that has been converted to a CommonJS file using a Babel-
32
- // compatible transform (i.e. "__esModule" has not been set), then set
33
- // "default" to the CommonJS "module.exports" for node compatibility.
34
- isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
35
- mod
36
- ));
37
-
38
- // ../../node_modules/.pnpm/tsup@8.5.0_@microsoft+api-extractor@7.52.8_@types+node@20.19.8__jiti@2.4.2_postcss@8.5.6_typescript@5.8.3_yaml@2.7.1/node_modules/tsup/assets/cjs_shims.js
39
- var getImportMetaUrl; exports.importMetaUrl = void 0;
40
- var init_cjs_shims = __esm({
41
- "../../node_modules/.pnpm/tsup@8.5.0_@microsoft+api-extractor@7.52.8_@types+node@20.19.8__jiti@2.4.2_postcss@8.5.6_typescript@5.8.3_yaml@2.7.1/node_modules/tsup/assets/cjs_shims.js"() {
42
- getImportMetaUrl = () => typeof document === "undefined" ? new URL(`file:${__filename}`).href : document.currentScript && document.currentScript.src || new URL("main.js", document.baseURI).href;
43
- exports.importMetaUrl = /* @__PURE__ */ getImportMetaUrl();
44
- }
45
- });
46
-
47
- exports.__commonJS = __commonJS;
48
- exports.__require = __require;
49
- exports.__toESM = __toESM;
50
- exports.init_cjs_shims = init_cjs_shims;
51
- //# sourceMappingURL=chunk-MKHKV2HH.cjs.map
52
- //# sourceMappingURL=chunk-MKHKV2HH.cjs.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["../../../node_modules/.pnpm/tsup@8.5.0_@microsoft+api-extractor@7.52.8_@types+node@20.19.8__jiti@2.4.2_postcss@8.5.6_typescript@5.8.3_yaml@2.7.1/node_modules/tsup/assets/cjs_shims.js"],"names":["importMetaUrl"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,IAKM,gBAMO,CAAA,CAAAA;AAXb,IAAA,cAAA,GAAA,KAAA,CAAA;AAAA,EAAA,qLAAA,GAAA;AAKA,IAAM,gBAAA,GAAmB,MACvB,OAAO,QAAA,KAAa,cAChB,IAAI,GAAA,CAAI,CAAQ,KAAA,EAAA,UAAU,CAAE,CAAA,CAAA,CAAE,OAC7B,QAAS,CAAA,aAAA,IAAiB,SAAS,aAAc,CAAA,GAAA,IAClD,IAAI,GAAI,CAAA,SAAA,EAAW,QAAS,CAAA,OAAO,CAAE,CAAA,IAAA;AAEpC,IAAMA,wCAAiD,gBAAA,EAAA;AAAA;AAAA,CAAA","file":"chunk-MKHKV2HH.cjs","sourcesContent":["// Shim globals in cjs bundle\n// There's a weird bug that esbuild will always inject importMetaUrl\n// if we export it as `const importMetaUrl = ... __filename ...`\n// But using a function will not cause this issue\n\nconst getImportMetaUrl = () =>\n typeof document === 'undefined'\n ? new URL(`file:${__filename}`).href\n : (document.currentScript && document.currentScript.src) ||\n new URL('main.js', document.baseURI).href\n\nexport const importMetaUrl = /* @__PURE__ */ getImportMetaUrl()\n"]}
@@ -1,273 +0,0 @@
1
- import { defineCommand, showUsage } from 'citty';
2
- import { colors } from 'consola/utils';
3
- import { isPromise } from '@kubb/core/utils';
4
- import { cosmiconfig } from 'cosmiconfig';
5
- import { createJiti } from 'jiti';
6
- import { LogMapper, createLogger } from '@kubb/core/logger';
7
- import path from 'path';
8
- import * as process from 'process';
9
- import { isInputPath, PromiseManager } from '@kubb/core';
10
- import open from 'open';
11
-
12
- // src/commands/generate.ts
13
-
14
- // src/utils/getPlugins.ts
15
- function isJSONPlugins(plugins) {
16
- return !!plugins?.some((plugin) => {
17
- return Array.isArray(plugin) && typeof plugin?.at(0) === "string";
18
- });
19
- }
20
- function isObjectPlugins(plugins) {
21
- return plugins instanceof Object && !Array.isArray(plugins);
22
- }
23
- function getPlugins(plugins) {
24
- if (isObjectPlugins(plugins)) {
25
- throw new Error("Object plugins are not supported anymore, best to use http://kubb.dev/getting-started/configure#json");
26
- }
27
- if (isJSONPlugins(plugins)) {
28
- throw new Error("JSON plugins are not supported anymore, best to use http://kubb.dev/getting-started/configure#json");
29
- }
30
- return Promise.resolve(plugins);
31
- }
32
-
33
- // src/utils/getConfig.ts
34
- async function getConfig(result, args2) {
35
- const config = result?.config;
36
- let kubbUserConfig = Promise.resolve(config);
37
- if (typeof config === "function") {
38
- const possiblePromise = config(args2);
39
- if (isPromise(possiblePromise)) {
40
- kubbUserConfig = possiblePromise;
41
- }
42
- kubbUserConfig = Promise.resolve(possiblePromise);
43
- }
44
- let JSONConfig = await kubbUserConfig;
45
- if (Array.isArray(JSONConfig)) {
46
- const results = [];
47
- for (const item of JSONConfig) {
48
- const plugins = item.plugins ? await getPlugins(item.plugins) : void 0;
49
- results.push({
50
- ...item,
51
- plugins
52
- });
53
- }
54
- return results;
55
- }
56
- JSONConfig = {
57
- ...JSONConfig,
58
- plugins: JSONConfig.plugins ? await getPlugins(JSONConfig.plugins) : void 0
59
- };
60
- return JSONConfig;
61
- }
62
- var tsLoader = async (configFile) => {
63
- const jiti = createJiti(import.meta.url, {
64
- jsx: {
65
- runtime: "automatic",
66
- importSource: "@kubb/react"
67
- },
68
- sourceMaps: true
69
- });
70
- const mod = await jiti.import(configFile, { default: true });
71
- return mod;
72
- };
73
- async function getCosmiConfig(moduleName, config) {
74
- const searchPlaces = [
75
- "package.json",
76
- `.${moduleName}rc`,
77
- `.${moduleName}rc.json`,
78
- `.${moduleName}rc.yaml`,
79
- `.${moduleName}rc.yml`,
80
- `.${moduleName}rc.ts`,
81
- `.${moduleName}rc.js`,
82
- `.${moduleName}rc.mjs`,
83
- `.${moduleName}rc.cjs`,
84
- `${moduleName}.config.ts`,
85
- `${moduleName}.config.js`,
86
- `${moduleName}.config.mjs`,
87
- `${moduleName}.config.cjs`
88
- ];
89
- const explorer = cosmiconfig(moduleName, {
90
- cache: false,
91
- searchPlaces: [
92
- ...searchPlaces.map((searchPlace) => {
93
- return `.config/${searchPlace}`;
94
- }),
95
- ...searchPlaces.map((searchPlace) => {
96
- return `configs/${searchPlace}`;
97
- }),
98
- ...searchPlaces
99
- ],
100
- loaders: {
101
- ".ts": tsLoader
102
- }
103
- });
104
- const result = config ? await explorer.load(config) : await explorer.search();
105
- if (result?.isEmpty || !result || !result.config) {
106
- throw new Error("Config not defined, create a kubb.config.js or pass through your config with the option --config");
107
- }
108
- return result;
109
- }
110
- async function startWatcher(path2, cb) {
111
- const { watch } = await import('chokidar');
112
- const logger = createLogger();
113
- const ignored = "**/{.git,node_modules}/**";
114
- const watcher = watch(path2, {
115
- ignorePermissionErrors: true,
116
- ignored
117
- });
118
- watcher.on("all", (type, file) => {
119
- logger?.emit("info", colors.yellow(colors.bold(`Change detected: ${type} ${file}`)));
120
- try {
121
- cb(path2);
122
- } catch (_e) {
123
- logger?.emit("warning", colors.red("Watcher failed"));
124
- }
125
- });
126
- }
127
- var args = {
128
- config: {
129
- type: "string",
130
- description: "Path to the Kubb config",
131
- alias: "c"
132
- },
133
- logLevel: {
134
- type: "string",
135
- description: "Info, silent or debug",
136
- alias: "l",
137
- default: "info",
138
- valueHint: "silent|info|debug"
139
- },
140
- watch: {
141
- type: "boolean",
142
- description: "Watch mode based on the input file",
143
- alias: "w",
144
- default: false
145
- },
146
- debug: {
147
- type: "boolean",
148
- description: "Override logLevel to debug",
149
- alias: "d",
150
- default: false
151
- },
152
- ui: {
153
- type: "boolean",
154
- description: "Open ui",
155
- alias: "u",
156
- default: false
157
- },
158
- help: {
159
- type: "boolean",
160
- description: "Show help",
161
- alias: "h",
162
- default: false
163
- }
164
- };
165
- var command = defineCommand({
166
- meta: {
167
- name: "generate",
168
- description: "[input] Generate files based on a 'kubb.config.ts' file"
169
- },
170
- args,
171
- async run(commandContext) {
172
- let name = "";
173
- const progressCache = /* @__PURE__ */ new Map();
174
- const { args: args2 } = commandContext;
175
- const input = args2._[0];
176
- if (args2.help) {
177
- return showUsage(command);
178
- }
179
- if (args2.debug) {
180
- args2.logLevel = "debug";
181
- }
182
- const logLevel = LogMapper[args2.logLevel] || 3;
183
- const logger = createLogger({
184
- logLevel
185
- });
186
- const { generate } = await import('./generate-HUWFJ4IA.js');
187
- logger.emit("start", "Loading config");
188
- const result = await getCosmiConfig("kubb", args2.config);
189
- logger.emit("success", `Config loaded(${colors.dim(path.relative(process.cwd(), result.filepath))})`);
190
- const config = await getConfig(result, args2);
191
- const start = async () => {
192
- if (Array.isArray(config)) {
193
- const promiseManager = new PromiseManager();
194
- const promises = config.map((c) => () => {
195
- name = c.name || "";
196
- progressCache.clear();
197
- return generate({
198
- input,
199
- config: c,
200
- args: args2,
201
- progressCache
202
- });
203
- });
204
- await promiseManager.run("seq", promises);
205
- return;
206
- }
207
- progressCache.clear();
208
- await generate({
209
- input,
210
- config,
211
- progressCache,
212
- args: args2
213
- });
214
- return;
215
- };
216
- if (args2.ui) {
217
- const { startServer } = await import('@kubb/ui');
218
- await startServer(
219
- {
220
- stop: () => process.exit(1),
221
- restart: () => start(),
222
- getMeta: () => {
223
- const entries = [...progressCache.entries()];
224
- const percentages = entries.reduce(
225
- (acc, [key, singleBar]) => {
226
- acc[key] = singleBar.getProgress();
227
- return acc;
228
- },
229
- {}
230
- );
231
- return {
232
- name,
233
- percentages
234
- };
235
- }
236
- },
237
- (info) => {
238
- const url = `${info.address}:${info.port}`.replace("::", "http://localhost");
239
- logger.consola?.start(`Starting ui on ${url}`);
240
- open(url);
241
- }
242
- );
243
- }
244
- if (args2.watch) {
245
- if (Array.isArray(config)) {
246
- throw new Error("Cannot use watcher with multiple Configs(array)");
247
- }
248
- if (isInputPath(config)) {
249
- return startWatcher([input || config.input.path], async (paths) => {
250
- await start();
251
- logger.emit("start", colors.yellow(colors.bold(`Watching for changes in ${paths.join(" and ")}`)));
252
- });
253
- }
254
- }
255
- await start();
256
- if (globalThis.isDevtoolsEnabled) {
257
- const canRestart = await logger.consola?.prompt("Restart(could be used to validate the profiler)?", {
258
- type: "confirm",
259
- initial: false
260
- });
261
- if (canRestart) {
262
- await start();
263
- } else {
264
- process.exit(1);
265
- }
266
- }
267
- }
268
- });
269
- var generate_default = command;
270
-
271
- export { generate_default as default };
272
- //# sourceMappingURL=generate-65TMSGIL.js.map
273
- //# sourceMappingURL=generate-65TMSGIL.js.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["../src/utils/getPlugins.ts","../src/utils/getConfig.ts","../src/utils/getCosmiConfig.ts","../src/utils/watcher.ts","../src/commands/generate.ts"],"names":["args","path","createLogger","colors"],"mappings":"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","file":"generate-65TMSGIL.js","sourcesContent":["import type { UserConfig } from '@kubb/core'\n\nfunction isJSONPlugins(plugins: UserConfig['plugins']) {\n return !!(plugins as any)?.some((plugin: any) => {\n return Array.isArray(plugin) && typeof plugin?.at(0) === 'string'\n })\n}\n\nfunction isObjectPlugins(plugins: UserConfig['plugins']): plugins is any {\n return plugins instanceof Object && !Array.isArray(plugins)\n}\n\nexport function getPlugins(plugins: UserConfig['plugins']): Promise<UserConfig['plugins']> {\n if (isObjectPlugins(plugins)) {\n throw new Error('Object plugins are not supported anymore, best to use http://kubb.dev/getting-started/configure#json')\n }\n\n if (isJSONPlugins(plugins)) {\n throw new Error('JSON plugins are not supported anymore, best to use http://kubb.dev/getting-started/configure#json')\n }\n\n return Promise.resolve(plugins)\n}\n","import { isPromise } from '@kubb/core/utils'\n\nimport { getPlugins } from './getPlugins.ts'\n\nimport type { Config, UserConfig } from '@kubb/core'\nimport type { Args } from '../commands/generate.ts'\nimport type { CosmiconfigResult } from './getCosmiConfig.ts'\n\n/**\n * Converting UserConfig to Config without a change in the object beside the JSON convert.\n */\nexport async function getConfig(result: CosmiconfigResult, args: Args): Promise<Array<Config> | Config> {\n const config = result?.config\n let kubbUserConfig = Promise.resolve(config) as Promise<UserConfig | Array<UserConfig>>\n\n // for ts or js files\n if (typeof config === 'function') {\n const possiblePromise = config(args)\n if (isPromise(possiblePromise)) {\n kubbUserConfig = possiblePromise\n }\n kubbUserConfig = Promise.resolve(possiblePromise)\n }\n\n let JSONConfig = await kubbUserConfig\n\n if (Array.isArray(JSONConfig)) {\n const results: Array<Config> = []\n\n for (const item of JSONConfig) {\n const plugins = item.plugins ? await getPlugins(item.plugins) : undefined\n\n results.push({\n ...item,\n plugins,\n } as Config)\n }\n\n return results\n }\n\n JSONConfig = {\n ...JSONConfig,\n plugins: JSONConfig.plugins ? await getPlugins(JSONConfig.plugins) : undefined,\n }\n\n return JSONConfig as Config\n}\n","import { cosmiconfig } from 'cosmiconfig'\nimport { createJiti } from 'jiti'\n\nimport type { UserConfig, defineConfig } from '@kubb/core'\n\nexport type CosmiconfigResult = {\n filepath: string\n isEmpty?: boolean\n config: ReturnType<typeof defineConfig> | UserConfig\n}\n\nconst tsLoader = async (configFile: string) => {\n const jiti = createJiti(import.meta.url, {\n jsx: {\n runtime: 'automatic',\n importSource: '@kubb/react',\n },\n sourceMaps: true,\n })\n\n const mod = await jiti.import(configFile, { default: true })\n\n return mod\n}\n\nexport async function getCosmiConfig(moduleName: string, config?: string): Promise<CosmiconfigResult> {\n const searchPlaces = [\n 'package.json',\n `.${moduleName}rc`,\n `.${moduleName}rc.json`,\n `.${moduleName}rc.yaml`,\n `.${moduleName}rc.yml`,\n\n `.${moduleName}rc.ts`,\n `.${moduleName}rc.js`,\n `.${moduleName}rc.mjs`,\n `.${moduleName}rc.cjs`,\n\n `${moduleName}.config.ts`,\n `${moduleName}.config.js`,\n `${moduleName}.config.mjs`,\n `${moduleName}.config.cjs`,\n ]\n const explorer = cosmiconfig(moduleName, {\n cache: false,\n searchPlaces: [\n ...searchPlaces.map((searchPlace) => {\n return `.config/${searchPlace}`\n }),\n ...searchPlaces.map((searchPlace) => {\n return `configs/${searchPlace}`\n }),\n ...searchPlaces,\n ],\n loaders: {\n '.ts': tsLoader,\n },\n })\n\n const result = config ? await explorer.load(config) : await explorer.search()\n\n if (result?.isEmpty || !result || !result.config) {\n throw new Error('Config not defined, create a kubb.config.js or pass through your config with the option --config')\n }\n\n return result as CosmiconfigResult\n}\n","import { createLogger } from '@kubb/core/logger'\nimport { colors } from 'consola/utils'\n\nexport async function startWatcher(path: string[], cb: (path: string[]) => Promise<void>): Promise<void> {\n const { watch } = await import('chokidar')\n const logger = createLogger()\n\n const ignored = '**/{.git,node_modules}/**'\n\n const watcher = watch(path, {\n ignorePermissionErrors: true,\n ignored,\n })\n watcher.on('all', (type, file) => {\n logger?.emit('info', colors.yellow(colors.bold(`Change detected: ${type} ${file}`)))\n\n try {\n cb(path)\n } catch (_e) {\n logger?.emit('warning', colors.red('Watcher failed'))\n }\n })\n}\n","import { defineCommand, showUsage } from 'citty'\nimport type { ArgsDef, ParsedArgs } from 'citty'\nimport { colors } from 'consola/utils'\n\nimport { getConfig } from '../utils/getConfig.ts'\nimport { getCosmiConfig } from '../utils/getCosmiConfig.ts'\nimport { startWatcher } from '../utils/watcher.ts'\n\nimport path from 'node:path'\nimport * as process from 'node:process'\nimport { PromiseManager, isInputPath } from '@kubb/core'\nimport { LogMapper, createLogger } from '@kubb/core/logger'\n\nimport open from 'open'\nimport type { SingleBar } from 'cli-progress'\n\ndeclare global {\n var isDevtoolsEnabled: any\n}\n\nconst args = {\n config: {\n type: 'string',\n description: 'Path to the Kubb config',\n alias: 'c',\n },\n logLevel: {\n type: 'string',\n description: 'Info, silent or debug',\n alias: 'l',\n default: 'info',\n valueHint: 'silent|info|debug',\n },\n watch: {\n type: 'boolean',\n description: 'Watch mode based on the input file',\n alias: 'w',\n default: false,\n },\n debug: {\n type: 'boolean',\n description: 'Override logLevel to debug',\n alias: 'd',\n default: false,\n },\n ui: {\n type: 'boolean',\n description: 'Open ui',\n alias: 'u',\n default: false,\n },\n help: {\n type: 'boolean',\n description: 'Show help',\n alias: 'h',\n default: false,\n },\n} as const satisfies ArgsDef\n\nexport type Args = ParsedArgs<typeof args>\n\nconst command = defineCommand({\n meta: {\n name: 'generate',\n description: \"[input] Generate files based on a 'kubb.config.ts' file\",\n },\n args,\n async run(commandContext) {\n let name = ''\n const progressCache = new Map<string, SingleBar>()\n\n const { args } = commandContext\n\n const input = args._[0]\n\n if (args.help) {\n return showUsage(command)\n }\n\n if (args.debug) {\n args.logLevel = 'debug'\n }\n\n const logLevel = LogMapper[args.logLevel as keyof typeof LogMapper] || 3\n const logger = createLogger({\n logLevel,\n })\n const { generate } = await import('../runners/generate.ts')\n\n logger.emit('start', 'Loading config')\n\n const result = await getCosmiConfig('kubb', args.config)\n logger.emit('success', `Config loaded(${colors.dim(path.relative(process.cwd(), result.filepath))})`)\n\n const config = await getConfig(result, args)\n\n const start = async () => {\n if (Array.isArray(config)) {\n const promiseManager = new PromiseManager()\n const promises = config.map((c) => () => {\n name = c.name || ''\n progressCache.clear()\n\n return generate({\n input,\n config: c,\n args,\n progressCache,\n })\n })\n\n await promiseManager.run('seq', promises)\n return\n }\n\n progressCache.clear()\n\n await generate({\n input,\n config,\n progressCache,\n args,\n })\n\n return\n }\n\n if (args.ui) {\n const { startServer } = await import('@kubb/ui')\n\n await startServer(\n {\n stop: () => process.exit(1),\n restart: () => start(),\n getMeta: () => {\n const entries = [...progressCache.entries()]\n\n const percentages = entries.reduce(\n (acc, [key, singleBar]) => {\n acc[key] = singleBar.getProgress()\n\n return acc\n },\n {} as Record<string, number>,\n )\n\n return {\n name,\n percentages,\n }\n },\n },\n (info) => {\n const url = `${info.address}:${info.port}`.replace('::', 'http://localhost')\n logger.consola?.start(`Starting ui on ${url}`)\n\n open(url)\n },\n )\n }\n\n if (args.watch) {\n if (Array.isArray(config)) {\n throw new Error('Cannot use watcher with multiple Configs(array)')\n }\n\n if (isInputPath(config)) {\n return startWatcher([input || config.input.path], async (paths) => {\n await start()\n logger.emit('start', colors.yellow(colors.bold(`Watching for changes in ${paths.join(' and ')}`)))\n })\n }\n }\n\n await start()\n\n if (globalThis.isDevtoolsEnabled) {\n const canRestart = await logger.consola?.prompt('Restart(could be used to validate the profiler)?', {\n type: 'confirm',\n initial: false,\n })\n\n if (canRestart) {\n await start()\n } else {\n process.exit(1)\n }\n }\n },\n})\n\nexport default command\n"]}