@kubb/core 5.0.0-beta.66 → 5.0.0-beta.67
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 +1 -1
- package/package.json +4 -4
package/dist/index.cjs
CHANGED
|
@@ -608,7 +608,7 @@ function createAdapter(build) {
|
|
|
608
608
|
/**
|
|
609
609
|
* Docs major version, derived from the package version so the link tracks the published major.
|
|
610
610
|
*/
|
|
611
|
-
const docsMajor = "5.0.0-beta.
|
|
611
|
+
const docsMajor = "5.0.0-beta.67".split(".")[0] ?? "5";
|
|
612
612
|
/**
|
|
613
613
|
* Narrows a {@link Diagnostic} to the variant for `code`, or `null` when it does not match.
|
|
614
614
|
*
|
package/dist/index.js
CHANGED
|
@@ -606,7 +606,7 @@ function createAdapter(build) {
|
|
|
606
606
|
/**
|
|
607
607
|
* Docs major version, derived from the package version so the link tracks the published major.
|
|
608
608
|
*/
|
|
609
|
-
const docsMajor = "5.0.0-beta.
|
|
609
|
+
const docsMajor = "5.0.0-beta.67".split(".")[0] ?? "5";
|
|
610
610
|
/**
|
|
611
611
|
* Narrows a {@link Diagnostic} to the variant for `code`, or `null` when it does not match.
|
|
612
612
|
*
|
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.67",
|
|
4
4
|
"description": "Core engine for Kubb's plugin-based code generation system. 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.67"
|
|
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.67"
|
|
63
63
|
},
|
|
64
64
|
"peerDependencies": {
|
|
65
|
-
"@kubb/renderer-jsx": "5.0.0-beta.
|
|
65
|
+
"@kubb/renderer-jsx": "5.0.0-beta.67"
|
|
66
66
|
},
|
|
67
67
|
"engines": {
|
|
68
68
|
"node": ">=22"
|