@barefootjs/hono 0.33.6 → 0.34.0

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/vite.js +12 -12
  2. package/package.json +2 -2
package/dist/vite.js CHANGED
@@ -12,6 +12,18 @@ import ts10 from "typescript";
12
12
 
13
13
  // ../jsx/src/expression-parser.ts
14
14
  import ts from "typescript";
15
+
16
+ // ../jsx/src/lowering-registry.ts
17
+ var plugins = [];
18
+ function registerLoweringPlugin(plugin) {
19
+ const existing = plugins.findIndex((p) => p.name === plugin.name);
20
+ if (existing >= 0)
21
+ plugins[existing] = plugin;
22
+ else
23
+ plugins.push(plugin);
24
+ }
25
+
26
+ // ../jsx/src/expression-parser.ts
15
27
  var UNSUPPORTED_METHODS = new Set([
16
28
  "filter",
17
29
  "map",
@@ -1289,18 +1301,6 @@ import ts16 from "typescript";
1289
1301
 
1290
1302
  // ../jsx/src/relocate.ts
1291
1303
  import ts18 from "typescript";
1292
-
1293
- // ../jsx/src/lowering-registry.ts
1294
- var plugins = [];
1295
- function registerLoweringPlugin(plugin) {
1296
- const existing = plugins.findIndex((p) => p.name === plugin.name);
1297
- if (existing >= 0)
1298
- plugins[existing] = plugin;
1299
- else
1300
- plugins.push(plugin);
1301
- }
1302
-
1303
- // ../jsx/src/relocate.ts
1304
1304
  var REGISTRY_SAFE_BINDING_KINDS = new Set([
1305
1305
  "global",
1306
1306
  "module-import",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@barefootjs/hono",
3
- "version": "0.33.6",
3
+ "version": "0.34.0",
4
4
  "description": "Hono integration for BarefootJS",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -122,7 +122,7 @@
122
122
  },
123
123
  "devDependencies": {
124
124
  "@barefootjs/adapter-tests": "0.1.0",
125
- "@barefootjs/vite": "0.33.6",
125
+ "@barefootjs/vite": "0.34.0",
126
126
  "@types/jsdom": "^27.0.0",
127
127
  "hono": "^4.6.0",
128
128
  "jsdom": "^27.3.0",