@barefootjs/jinja 0.26.3 → 0.26.4
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.map +1 -1
- package/dist/index.js +2 -0
- package/package.json +3 -3
- package/src/conformance-pins.ts +15 -0
|
@@ -1 +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,
|
|
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,eA8I7B,CAAA"}
|
package/dist/index.js
CHANGED
|
@@ -189209,6 +189209,8 @@ var conformancePins = {
|
|
|
189209
189209
|
"reduce-typeof-body": [{ code: "BF101", severity: "error" }],
|
|
189210
189210
|
"reduce-right-typeof-body": [{ code: "BF101", severity: "error" }],
|
|
189211
189211
|
"flatmap-typeof-projection": [{ code: "BF101", severity: "error" }],
|
|
189212
|
+
"tag-cloud": [{ code: "BF021", severity: "error" }],
|
|
189213
|
+
"preamble-cells": [{ code: "BF021", severity: "error" }],
|
|
189212
189214
|
"static-array-from-props": [
|
|
189213
189215
|
{ code: "BF101", severity: "error", issue: "https://github.com/piconic-ai/barefootjs/issues/2321" }
|
|
189214
189216
|
],
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@barefootjs/jinja",
|
|
3
|
-
"version": "0.26.
|
|
3
|
+
"version": "0.26.4",
|
|
4
4
|
"description": "Jinja2 adapter for BarefootJS — compiles IR to .jinja templates and ships the Python BarefootJS rendering runtime; runs under any Python web framework (Flask, etc.)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -53,14 +53,14 @@
|
|
|
53
53
|
"directory": "packages/adapter-jinja"
|
|
54
54
|
},
|
|
55
55
|
"dependencies": {
|
|
56
|
-
"@barefootjs/shared": "0.26.
|
|
56
|
+
"@barefootjs/shared": "0.26.4"
|
|
57
57
|
},
|
|
58
58
|
"peerDependencies": {
|
|
59
59
|
"@barefootjs/jsx": ">=0.2.0"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
62
|
"@barefootjs/adapter-tests": "0.1.0",
|
|
63
|
-
"@barefootjs/jsx": "0.26.
|
|
63
|
+
"@barefootjs/jsx": "0.26.4",
|
|
64
64
|
"typescript": "^5.0.0"
|
|
65
65
|
}
|
|
66
66
|
}
|
package/src/conformance-pins.ts
CHANGED
|
@@ -39,6 +39,21 @@ export const conformancePins: ConformancePins = {
|
|
|
39
39
|
'reduce-typeof-body': [{ code: 'BF101', severity: 'error' }],
|
|
40
40
|
'reduce-right-typeof-body': [{ code: 'BF101', severity: 'error' }],
|
|
41
41
|
'flatmap-typeof-projection': [{ code: 'BF101', severity: 'error' }],
|
|
42
|
+
// JSX-returning `.flatMap()` body carried as structured segments — i.e.
|
|
43
|
+
// one with STATEMENTS (early returns, consts): a JS runtime executes it
|
|
44
|
+
// verbatim; a DSL template runtime can't, so it refuses with BF021 +
|
|
45
|
+
// `/* @client */` (pre-gate this emitted an empty loop body — silent
|
|
46
|
+
// divergence). A pure PROJECTION body (`flatMap(it => it.tags.map(...))`,
|
|
47
|
+
// e.g. the `flatmap-expression-body` fixture) is NOT pinned: it lowers to
|
|
48
|
+
// neutral nested-loop IR this adapter templatizes natively.
|
|
49
|
+
// See spec/callback-fidelity.md.
|
|
50
|
+
'tag-cloud': [{ code: 'BF021', severity: 'error' }],
|
|
51
|
+
// A keyed `.map()` row body whose preamble builds a JSX leaf from item
|
|
52
|
+
// state (`cells.push(<td>{stateLabel}</td>)`) embedded as `{cells}` — the
|
|
53
|
+
// Stage 3 array-builder carrier, jsRuntime-only: a JS runtime runs it
|
|
54
|
+
// verbatim (and patches the region on same-key updates, #2389), a DSL
|
|
55
|
+
// adapter refuses with BF021 + `/* @client */`. See spec/callback-fidelity.md.
|
|
56
|
+
'preamble-cells': [{ code: 'BF021', severity: 'error' }],
|
|
42
57
|
// `todo-app` / `todo-app-ssr` no longer pinned (#2205) — the conformance
|
|
43
58
|
// harness now passes `siblingTemplatesRegistered: true` for fixtures with
|
|
44
59
|
// sibling `components`, matching `bf build`'s real semantics, so the
|