@vercel/hono 0.2.93 → 0.2.94
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.js +4 -0
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -31,6 +31,7 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
31
31
|
var src_exports = {};
|
|
32
32
|
__export(src_exports, {
|
|
33
33
|
build: () => build,
|
|
34
|
+
diagnostics: () => diagnostics,
|
|
34
35
|
entrypointCallback: () => entrypointCallback,
|
|
35
36
|
findEntrypoint: () => findEntrypoint,
|
|
36
37
|
name: () => name,
|
|
@@ -212,6 +213,7 @@ var prepareCache = ({ repoRootPath, workPath }) => {
|
|
|
212
213
|
|
|
213
214
|
// src/index.ts
|
|
214
215
|
var import_node2 = require("@vercel/node");
|
|
216
|
+
var import_build_utils3 = require("@vercel/build-utils");
|
|
215
217
|
var version = 3;
|
|
216
218
|
var name = "hono";
|
|
217
219
|
var shouldServe = async (opts) => {
|
|
@@ -230,9 +232,11 @@ var startDevServer = async (opts) => {
|
|
|
230
232
|
publicDir: "public"
|
|
231
233
|
});
|
|
232
234
|
};
|
|
235
|
+
var diagnostics = (0, import_build_utils3.createDiagnostics)("node");
|
|
233
236
|
// Annotate the CommonJS export names for ESM import in node:
|
|
234
237
|
0 && (module.exports = {
|
|
235
238
|
build,
|
|
239
|
+
diagnostics,
|
|
236
240
|
entrypointCallback,
|
|
237
241
|
findEntrypoint,
|
|
238
242
|
name,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vercel/hono",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.94",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"homepage": "https://vercel.com/docs",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"ts-morph": "12.0.0",
|
|
24
24
|
"zod": "3.22.4",
|
|
25
25
|
"@vercel/static-config": "3.4.0",
|
|
26
|
-
"@vercel/node": "5.8.
|
|
26
|
+
"@vercel/node": "5.8.15"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@types/fs-extra": "11",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"fs-extra": "11.1.0",
|
|
33
33
|
"vite": "^5.1.6",
|
|
34
34
|
"vitest": "^2.0.1",
|
|
35
|
-
"@vercel/build-utils": "13.
|
|
35
|
+
"@vercel/build-utils": "13.29.0"
|
|
36
36
|
},
|
|
37
37
|
"scripts": {
|
|
38
38
|
"build": "node ../../utils/build-builder.mjs",
|