@objectstack/plugin-hono-server 4.0.2 → 4.0.3

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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @objectstack/plugin-hono-server@4.0.2 build /home/runner/work/framework/framework/packages/plugins/plugin-hono-server
2
+ > @objectstack/plugin-hono-server@4.0.3 build /home/runner/work/framework/framework/packages/plugins/plugin-hono-server
3
3
  > tsup --config ../../../tsup.config.ts
4
4
 
5
5
  CLI Building entry: src/index.ts
@@ -10,13 +10,13 @@
10
10
  CLI Cleaning output folder
11
11
  ESM Build start
12
12
  CJS Build start
13
- ESM dist/index.mjs 14.58 KB
13
+ ESM dist/index.mjs 14.62 KB
14
14
  ESM dist/index.mjs.map 29.19 KB
15
- ESM ⚡️ Build success in 89ms
16
- CJS dist/index.js 15.52 KB
15
+ ESM ⚡️ Build success in 114ms
16
+ CJS dist/index.js 15.55 KB
17
17
  CJS dist/index.js.map 29.18 KB
18
- CJS ⚡️ Build success in 90ms
18
+ CJS ⚡️ Build success in 118ms
19
19
  DTS Build start
20
- DTS ⚡️ Build success in 18725ms
20
+ DTS ⚡️ Build success in 15645ms
21
21
  DTS dist/index.d.mts 3.29 KB
22
22
  DTS dist/index.d.ts 3.29 KB
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # @objectstack/plugin-hono-server
2
2
 
3
+ ## 4.0.3
4
+
5
+ ### Patch Changes
6
+
7
+ - @objectstack/spec@4.0.3
8
+ - @objectstack/core@4.0.3
9
+
3
10
  ## 4.0.2
4
11
 
5
12
  ### Patch Changes
package/dist/index.js CHANGED
@@ -49,8 +49,8 @@ var import_node_server = require("@hono/node-server");
49
49
  var import_serve_static = require("@hono/node-server/serve-static");
50
50
  var HonoHttpServer = class {
51
51
  constructor(port = 3e3, staticRoot) {
52
- this.port = port;
53
- this.staticRoot = staticRoot;
52
+ __publicField(this, "port", port);
53
+ __publicField(this, "staticRoot", staticRoot);
54
54
  __publicField(this, "app");
55
55
  __publicField(this, "server");
56
56
  __publicField(this, "listeningPort");
package/dist/index.mjs CHANGED
@@ -37,8 +37,8 @@ import { serve } from "@hono/node-server";
37
37
  import { serveStatic } from "@hono/node-server/serve-static";
38
38
  var HonoHttpServer = class {
39
39
  constructor(port = 3e3, staticRoot) {
40
- this.port = port;
41
- this.staticRoot = staticRoot;
40
+ __publicField(this, "port", port);
41
+ __publicField(this, "staticRoot", staticRoot);
42
42
  __publicField(this, "app");
43
43
  __publicField(this, "server");
44
44
  __publicField(this, "listeningPort");
package/package.json CHANGED
@@ -1,20 +1,20 @@
1
1
  {
2
2
  "name": "@objectstack/plugin-hono-server",
3
- "version": "4.0.2",
3
+ "version": "4.0.3",
4
4
  "license": "Apache-2.0",
5
5
  "description": "Standard Hono Server Adapter for ObjectStack Runtime",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
8
8
  "dependencies": {
9
- "@hono/node-server": "^1.19.12",
10
- "hono": "^4.12.10",
11
- "@objectstack/core": "4.0.2",
12
- "@objectstack/spec": "4.0.2"
9
+ "@hono/node-server": "^1.19.14",
10
+ "hono": "^4.12.12",
11
+ "@objectstack/core": "4.0.3",
12
+ "@objectstack/spec": "4.0.3"
13
13
  },
14
14
  "devDependencies": {
15
- "@types/node": "^25.5.2",
15
+ "@types/node": "^25.6.0",
16
16
  "typescript": "^6.0.2",
17
- "vitest": "^4.1.2"
17
+ "vitest": "^4.1.4"
18
18
  },
19
19
  "scripts": {
20
20
  "build": "tsup --config ../../../tsup.config.ts",