kubb 2.0.0-alpha.9 → 2.0.0-beta.2
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/package.json +7 -8
package/README.md
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
</p>
|
|
13
13
|
|
|
14
14
|
<h4>
|
|
15
|
-
<a href="https://codesandbox.io/s/github/kubb-project/kubb/tree/
|
|
15
|
+
<a href="https://codesandbox.io/s/github/kubb-project/kubb/tree/alpha/examples/typescript" target="_blank">View Demo</a>
|
|
16
16
|
<span> · </span>
|
|
17
17
|
<a href="https://kubb.dev/" target="_blank">Documentation</a>
|
|
18
18
|
<span> · </span>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kubb",
|
|
3
|
-
"version": "2.0.0-
|
|
3
|
+
"version": "2.0.0-beta.2",
|
|
4
4
|
"description": "OpenAPI to TypeScript, React-Query, Zod, Zodios, Faker.js, MSW and Axios.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"typescript",
|
|
@@ -32,13 +32,13 @@
|
|
|
32
32
|
"!/**/__tests__/**"
|
|
33
33
|
],
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@kubb/cli": "2.0.0-
|
|
36
|
-
"@kubb/core": "2.0.0-
|
|
35
|
+
"@kubb/cli": "2.0.0-beta.2",
|
|
36
|
+
"@kubb/core": "2.0.0-beta.2"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"@types/node": "^20.9.
|
|
40
|
-
"tsup": "^
|
|
41
|
-
"typescript": "
|
|
39
|
+
"@types/node": "^20.9.4",
|
|
40
|
+
"tsup": "^8.0.1",
|
|
41
|
+
"typescript": "^5.3.2",
|
|
42
42
|
"@kubb/ts-config": "0.1.0",
|
|
43
43
|
"@kubb/tsup-config": "1.1.8"
|
|
44
44
|
},
|
|
@@ -58,8 +58,7 @@
|
|
|
58
58
|
"lint": "ESLINT_USE_FLAT_CONFIG=true eslint --format pretty .",
|
|
59
59
|
"lint-fix": "bun run lint --quiet --fix",
|
|
60
60
|
"release": "pnpm publish --no-git-check",
|
|
61
|
-
"release:canary": "bash ../../.github/canary.sh && node ../../scripts/build.js canary && pnpm publish --no-git-check
|
|
62
|
-
"release:alpha": "bash ../../.github/canary.sh && node ../../scripts/build.js alpha && pnpm publish --no-git-check -tag alpha",
|
|
61
|
+
"release:canary": "bash ../../.github/canary.sh && node ../../scripts/build.js canary && pnpm publish --no-git-check",
|
|
63
62
|
"start": "tsup --watch",
|
|
64
63
|
"test": "vitest --passWithNoTests",
|
|
65
64
|
"typecheck": "tsc -p ./tsconfig.json --noEmit --emitDeclarationOnly false"
|