@sdk-it/hono 0.36.2 → 0.37.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/README.md +2 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -304,7 +304,7 @@ await generate(spec, {
|
|
|
304
304
|
|
|
305
305
|
```bash
|
|
306
306
|
# using recent versions of node
|
|
307
|
-
node
|
|
307
|
+
node ./openapi.ts
|
|
308
308
|
|
|
309
309
|
# using node < 22
|
|
310
310
|
npx tsx ./openapi.ts
|
|
@@ -317,7 +317,7 @@ bun ./openapi.ts
|
|
|
317
317
|
<summary> Run in watch mode </summary>
|
|
318
318
|
|
|
319
319
|
```bash
|
|
320
|
-
node --
|
|
320
|
+
node --watch-path ./apps/backend/src --watch ./openapi.ts
|
|
321
321
|
```
|
|
322
322
|
|
|
323
323
|
</details>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sdk-it/hono",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.37.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.js",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"!**/*.test.*"
|
|
28
28
|
],
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@sdk-it/core": "0.
|
|
30
|
+
"@sdk-it/core": "0.37.1",
|
|
31
31
|
"hono": "^4.7.4",
|
|
32
32
|
"zod": "^3.25.76 || ^4.0.0",
|
|
33
33
|
"fast-content-type-parse": "^3.0.0"
|