@kubb/core 5.0.0-beta.82 → 5.0.0-beta.84
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 +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
|
|
27
27
|
Core engine for Kubb's plugin-based code generation system. Provides the plugin driver, file manager, `defineConfig`, `definePlugin`, `defineMiddleware`, and the build orchestration layer used by every Kubb plugin.
|
|
28
28
|
|
|
29
|
-
> **Note:**
|
|
29
|
+
> **Note:** `@kubb/core` is an internal library. Install the [`kubb`](https://npmx.dev/package/kubb) meta-package instead and author plugins, generators, resolvers, parsers, and adapters through its `kubb/kit` subpath, which re-exports the authoring surface of this package.
|
|
30
30
|
|
|
31
31
|
## Installation
|
|
32
32
|
|
package/dist/index.cjs
CHANGED
|
@@ -396,7 +396,7 @@ function createAdapter(build) {
|
|
|
396
396
|
/**
|
|
397
397
|
* Docs major version, derived from the package version so the link tracks the published major.
|
|
398
398
|
*/
|
|
399
|
-
const docsMajor = "5.0.0-beta.
|
|
399
|
+
const docsMajor = "5.0.0-beta.84".split(".")[0] ?? "5";
|
|
400
400
|
/**
|
|
401
401
|
* Narrows a {@link Diagnostic} to the variant for `code`, or `null` when it does not match.
|
|
402
402
|
*
|
package/dist/index.js
CHANGED
|
@@ -394,7 +394,7 @@ function createAdapter(build) {
|
|
|
394
394
|
/**
|
|
395
395
|
* Docs major version, derived from the package version so the link tracks the published major.
|
|
396
396
|
*/
|
|
397
|
-
const docsMajor = "5.0.0-beta.
|
|
397
|
+
const docsMajor = "5.0.0-beta.84".split(".")[0] ?? "5";
|
|
398
398
|
/**
|
|
399
399
|
* Narrows a {@link Diagnostic} to the variant for `code`, or `null` when it does not match.
|
|
400
400
|
*
|
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.84",
|
|
4
4
|
"description": "Core engine for Kubb. Provides the plugin driver, file manager and build orchestration used by every Kubb plugin.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"code-generator",
|
|
@@ -55,7 +55,7 @@
|
|
|
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.84"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
61
|
"@internals/utils": "0.0.0"
|