@kubb/core 5.0.0-beta.55 → 5.0.0-beta.56
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 +2 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +100 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
- package/src/index.ts +1 -1
package/dist/index.cjs
CHANGED
|
@@ -609,7 +609,7 @@ function createAdapter(build) {
|
|
|
609
609
|
/**
|
|
610
610
|
* Docs major, derived from the package version so the link tracks the published major.
|
|
611
611
|
*/
|
|
612
|
-
const docsMajor = "5.0.0-beta.
|
|
612
|
+
const docsMajor = "5.0.0-beta.56".split(".")[0] ?? "5";
|
|
613
613
|
/**
|
|
614
614
|
* Narrows a {@link Diagnostic} to the variant for `code`, or `null` when it does not match.
|
|
615
615
|
*
|
|
@@ -2886,6 +2886,7 @@ function defineParser(parser) {
|
|
|
2886
2886
|
exports.AsyncEventEmitter = require_memoryStorage.AsyncEventEmitter;
|
|
2887
2887
|
exports.Diagnostics = Diagnostics;
|
|
2888
2888
|
exports.KubbDriver = KubbDriver;
|
|
2889
|
+
exports.Url = Url;
|
|
2889
2890
|
Object.defineProperty(exports, "ast", {
|
|
2890
2891
|
enumerable: true,
|
|
2891
2892
|
get: function() {
|