chore: bump version to 0.18.0-rc.6 and fix EntityTypescript for system entities

This commit is contained in:
dswbx
2025-09-21 14:16:57 +02:00
parent 564eab23af
commit 99c1645411
5 changed files with 31 additions and 6 deletions

View File

@@ -17,7 +17,7 @@ export async function serveStatic(server: Platform): Promise<MiddlewareHandler>
case "node": {
const m = await import("@hono/node-server/serve-static");
const root = getRelativeDistPath() + "/static";
$console.log("Serving static files from", root);
$console.debug("Serving static files from", root);
return m.serveStatic({
// somehow different for node
root,
@@ -27,7 +27,7 @@ export async function serveStatic(server: Platform): Promise<MiddlewareHandler>
case "bun": {
const m = await import("hono/bun");
const root = path.resolve(getRelativeDistPath(), "static");
$console.log("Serving static files from", root);
$console.debug("Serving static files from", root);
return m.serveStatic({
root,
onNotFound,