@kubb/core 5.0.0-beta.68 → 5.0.0-beta.69
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/index.cjs +1 -1
- package/dist/index.js +2 -2
- package/package.json +4 -4
package/dist/index.cjs
CHANGED
|
@@ -447,7 +447,7 @@ function createAdapter(build) {
|
|
|
447
447
|
/**
|
|
448
448
|
* Docs major version, derived from the package version so the link tracks the published major.
|
|
449
449
|
*/
|
|
450
|
-
const docsMajor = "5.0.0-beta.
|
|
450
|
+
const docsMajor = "5.0.0-beta.69".split(".")[0] ?? "5";
|
|
451
451
|
/**
|
|
452
452
|
* Narrows a {@link Diagnostic} to the variant for `code`, or `null` when it does not match.
|
|
453
453
|
*
|
package/dist/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import "./rolldown-runtime-C0LytTxp.js";
|
|
2
2
|
import { _ as getErrorMessage, a as createStorage, c as clean, d as write, f as runtime, g as BuildError, h as AsyncEventEmitter, i as FileManager, l as toFilePath, m as pascalCase, n as _usingCtx, o as OPERATION_FILTER_TYPES, p as camelCase, r as FileProcessor, s as diagnosticCode, t as memoryStorage, u as toPosixPath } from "./memoryStorage-B4VTTIpQ.js";
|
|
3
|
-
import { hash } from "node:crypto";
|
|
4
3
|
import { stripVTControlCharacters, styleText } from "node:util";
|
|
4
|
+
import { hash } from "node:crypto";
|
|
5
5
|
import { access, glob, readFile, rm } from "node:fs/promises";
|
|
6
6
|
import path, { join, relative, resolve } from "node:path";
|
|
7
7
|
import { ast, ast as ast$1, composeMacros, operationDef, schemaDef, transform } from "@kubb/ast";
|
|
@@ -445,7 +445,7 @@ function createAdapter(build) {
|
|
|
445
445
|
/**
|
|
446
446
|
* Docs major version, derived from the package version so the link tracks the published major.
|
|
447
447
|
*/
|
|
448
|
-
const docsMajor = "5.0.0-beta.
|
|
448
|
+
const docsMajor = "5.0.0-beta.69".split(".")[0] ?? "5";
|
|
449
449
|
/**
|
|
450
450
|
* Narrows a {@link Diagnostic} to the variant for `code`, or `null` when it does not match.
|
|
451
451
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kubb/core",
|
|
3
|
-
"version": "5.0.0-beta.
|
|
3
|
+
"version": "5.0.0-beta.69",
|
|
4
4
|
"description": "Core engine for Kubb. Provides the plugin driver, file manager, defineConfig, and build orchestration used by every Kubb plugin.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"code-generator",
|
|
@@ -55,14 +55,14 @@
|
|
|
55
55
|
"registry": "https://registry.npmjs.org/"
|
|
56
56
|
},
|
|
57
57
|
"dependencies": {
|
|
58
|
-
"@kubb/ast": "5.0.0-beta.
|
|
58
|
+
"@kubb/ast": "5.0.0-beta.69"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
61
|
"@internals/utils": "0.0.0",
|
|
62
|
-
"@kubb/renderer-jsx": "5.0.0-beta.
|
|
62
|
+
"@kubb/renderer-jsx": "5.0.0-beta.69"
|
|
63
63
|
},
|
|
64
64
|
"peerDependencies": {
|
|
65
|
-
"@kubb/renderer-jsx": "5.0.0-beta.
|
|
65
|
+
"@kubb/renderer-jsx": "5.0.0-beta.69"
|
|
66
66
|
},
|
|
67
67
|
"engines": {
|
|
68
68
|
"node": ">=22"
|