@kubb/core 5.0.0 → 5.0.1
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 +13 -2
package/dist/index.cjs
CHANGED
|
@@ -157,7 +157,7 @@ function randomCliColor(text) {
|
|
|
157
157
|
/**
|
|
158
158
|
* Docs major version, derived from the package version so the link tracks the published major.
|
|
159
159
|
*/
|
|
160
|
-
const docsMajor = "5.0.
|
|
160
|
+
const docsMajor = "5.0.1".split(".")[0] ?? "5";
|
|
161
161
|
/**
|
|
162
162
|
* Builds a type guard that narrows a {@link Diagnostic} to the variant for `kind`. A diagnostic
|
|
163
163
|
* with no `kind` is treated as a `problem`.
|
package/dist/index.js
CHANGED
|
@@ -155,7 +155,7 @@ function randomCliColor(text) {
|
|
|
155
155
|
/**
|
|
156
156
|
* Docs major version, derived from the package version so the link tracks the published major.
|
|
157
157
|
*/
|
|
158
|
-
const docsMajor = "5.0.
|
|
158
|
+
const docsMajor = "5.0.1".split(".")[0] ?? "5";
|
|
159
159
|
/**
|
|
160
160
|
* Builds a type guard that narrows a {@link Diagnostic} to the variant for `kind`. A diagnostic
|
|
161
161
|
* with no `kind` is treated as a `problem`.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kubb/core",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.1",
|
|
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",
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
"plugin-system",
|
|
11
11
|
"typescript"
|
|
12
12
|
],
|
|
13
|
+
"homepage": "https://kubb.dev",
|
|
13
14
|
"license": "MIT",
|
|
14
15
|
"author": "stijnvanhulle",
|
|
15
16
|
"repository": {
|
|
@@ -17,6 +18,16 @@
|
|
|
17
18
|
"url": "git+https://github.com/kubb-labs/kubb.git",
|
|
18
19
|
"directory": "packages/core"
|
|
19
20
|
},
|
|
21
|
+
"funding": [
|
|
22
|
+
{
|
|
23
|
+
"type": "github",
|
|
24
|
+
"url": "https://github.com/sponsors/stijnvanhulle"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"type": "opencollective",
|
|
28
|
+
"url": "https://opencollective.com/kubb"
|
|
29
|
+
}
|
|
30
|
+
],
|
|
20
31
|
"files": [
|
|
21
32
|
"schemas",
|
|
22
33
|
"dist",
|
|
@@ -55,7 +66,7 @@
|
|
|
55
66
|
"registry": "https://registry.npmjs.org/"
|
|
56
67
|
},
|
|
57
68
|
"dependencies": {
|
|
58
|
-
"@kubb/ast": "5.0.
|
|
69
|
+
"@kubb/ast": "5.0.1"
|
|
59
70
|
},
|
|
60
71
|
"devDependencies": {
|
|
61
72
|
"@internals/utils": "0.0.1"
|