@barefootjs/hono 0.17.0 → 0.18.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.
- package/dist/conformance-pins.d.ts +12 -0
- package/dist/conformance-pins.d.ts.map +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -0
- package/package.json +1 -1
- package/src/conformance-pins.ts +13 -0
- package/src/index.ts +1 -0
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Per-fixture build-time contracts for shapes the Hono adapter
|
|
3
|
+
* intentionally refuses to lower. Hono's SSR runtime is JS — its
|
|
4
|
+
* `acceptsTemplateCall` is broad enough to cover every conformance case,
|
|
5
|
+
* so this adapter currently has no pins. Kept as a module (rather than
|
|
6
|
+
* omitted) for uniformity with the other 7 adapter packages: consumed by
|
|
7
|
+
* this package's own conformance test (as `expectedDiagnostics`) and by
|
|
8
|
+
* `bf compat` (issue-URL attribution).
|
|
9
|
+
*/
|
|
10
|
+
import type { ConformancePins } from '@barefootjs/jsx';
|
|
11
|
+
export declare const conformancePins: ConformancePins;
|
|
12
|
+
//# sourceMappingURL=conformance-pins.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"conformance-pins.d.ts","sourceRoot":"","sources":["../src/conformance-pins.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAA;AAEtD,eAAO,MAAM,eAAe,EAAE,eAAoB,CAAA"}
|
package/dist/index.d.ts
CHANGED
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
*/
|
|
6
6
|
export { HonoAdapter, honoAdapter } from './adapter/index.ts';
|
|
7
7
|
export type { HonoAdapterOptions } from './adapter/index.ts';
|
|
8
|
+
export { conformancePins } from './conformance-pins.ts';
|
|
8
9
|
export type { CollectedScript } from './scripts.tsx';
|
|
9
10
|
export type { CollectedPortal } from './portals.tsx';
|
|
10
11
|
export type { PortalProps } from './portal-ssr.tsx';
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAGH,OAAO,EAAE,WAAW,EAAE,WAAW,EAAE,MAAM,oBAAoB,CAAA;AAC7D,YAAY,EAAE,kBAAkB,EAAE,MAAM,oBAAoB,CAAA;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAGH,OAAO,EAAE,WAAW,EAAE,WAAW,EAAE,MAAM,oBAAoB,CAAA;AAC7D,YAAY,EAAE,kBAAkB,EAAE,MAAM,oBAAoB,CAAA;AAC5D,OAAO,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAA;AAIvD,YAAY,EAAE,eAAe,EAAE,MAAM,eAAe,CAAA;AAIpD,YAAY,EAAE,eAAe,EAAE,MAAM,eAAe,CAAA;AACpD,YAAY,EAAE,WAAW,EAAE,MAAM,kBAAkB,CAAA;AAInD,YAAY,EAAE,YAAY,EAAE,MAAM,aAAa,CAAA;AAI/C,YAAY,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAA"}
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Per-fixture build-time contracts for shapes the Hono adapter
|
|
3
|
+
* intentionally refuses to lower. Hono's SSR runtime is JS — its
|
|
4
|
+
* `acceptsTemplateCall` is broad enough to cover every conformance case,
|
|
5
|
+
* so this adapter currently has no pins. Kept as a module (rather than
|
|
6
|
+
* omitted) for uniformity with the other 7 adapter packages: consumed by
|
|
7
|
+
* this package's own conformance test (as `expectedDiagnostics`) and by
|
|
8
|
+
* `bf compat` (issue-URL attribution).
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
import type { ConformancePins } from '@barefootjs/jsx'
|
|
12
|
+
|
|
13
|
+
export const conformancePins: ConformancePins = {}
|
package/src/index.ts
CHANGED
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
// Hono Adapter for JSX compilation
|
|
8
8
|
export { HonoAdapter, honoAdapter } from './adapter/index.ts'
|
|
9
9
|
export type { HonoAdapterOptions } from './adapter/index.ts'
|
|
10
|
+
export { conformancePins } from './conformance-pins.ts'
|
|
10
11
|
|
|
11
12
|
// BfScripts is exported from a separate entry point to avoid JSX runtime issues in tests
|
|
12
13
|
// Usage: import { BfScripts } from '@barefootjs/hono/scripts'
|