@kanjijs/platform-bun 0.2.0-beta.51 → 0.2.0-beta.52

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.
Files changed (2) hide show
  1. package/dist/index.js +1 -0
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -6,6 +6,7 @@ class KanjijsServer {
6
6
  console.log(`\uD83D\uDE80 Kanjijs server running on http://localhost:${port}`);
7
7
  return Bun.serve({
8
8
  port,
9
+ hostname: "0.0.0.0",
9
10
  fetch: (req) => app.fetch(req)
10
11
  });
11
12
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kanjijs/platform-bun",
3
- "version": "0.2.0-beta.51",
3
+ "version": "0.2.0-beta.52",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -13,7 +13,7 @@
13
13
  "build": "bun build src/index.ts --outdir dist --target bun && bunx tsc --emitDeclarationOnly --declaration --outDir dist -p tsconfig.build.json"
14
14
  },
15
15
  "dependencies": {
16
- "@kanjijs/platform-hono": "^0.2.0-beta.51",
16
+ "@kanjijs/platform-hono": "^0.2.0-beta.52",
17
17
  "hono": "^4.0.0"
18
18
  }
19
19
  }