@barefootjs/go-template 0.26.0 → 0.26.2
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/index.js +1 -1
- package/package.json +3 -3
- package/src/conformance-pins.ts +1 -1
package/dist/index.js
CHANGED
|
@@ -6193,7 +6193,7 @@ var conformancePins = {
|
|
|
6193
6193
|
"filter-nested-find-predicate": [
|
|
6194
6194
|
{ code: "BF101", severity: "error", issue: "https://github.com/piconic-ai/barefootjs/issues/2320" }
|
|
6195
6195
|
],
|
|
6196
|
-
"date-method-uncatalogued": [{ code: "BF021", severity: "error", issue: "https://github.com/piconic-ai/barefootjs/issues/
|
|
6196
|
+
"date-method-uncatalogued": [{ code: "BF021", severity: "error", issue: "https://github.com/piconic-ai/barefootjs/issues/2356" }]
|
|
6197
6197
|
};
|
|
6198
6198
|
// src/render-divergences.ts
|
|
6199
6199
|
var renderDivergences = {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@barefootjs/go-template",
|
|
3
|
-
"version": "0.26.
|
|
3
|
+
"version": "0.26.2",
|
|
4
4
|
"description": "Go html/template adapter for BarefootJS - generates Go template files from IR",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"directory": "packages/adapter-go-template"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@barefootjs/shared": "0.26.
|
|
52
|
+
"@barefootjs/shared": "0.26.2"
|
|
53
53
|
},
|
|
54
54
|
"peerDependencies": {
|
|
55
55
|
"@barefootjs/jsx": ">=0.2.0",
|
|
@@ -57,6 +57,6 @@
|
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
59
|
"@barefootjs/adapter-tests": "0.1.0",
|
|
60
|
-
"@barefootjs/jsx": "0.26.
|
|
60
|
+
"@barefootjs/jsx": "0.26.2"
|
|
61
61
|
}
|
|
62
62
|
}
|
package/src/conformance-pins.ts
CHANGED
|
@@ -147,5 +147,5 @@ export const conformancePins: ConformancePins = {
|
|
|
147
147
|
// compiler-level refusal (`checkRichTypeMethodCalls`, wired ahead of
|
|
148
148
|
// `adapter.generate()`), not an adapter-specific gap, so it is pinned
|
|
149
149
|
// identically across every adapter package including Hono.
|
|
150
|
-
'date-method-uncatalogued': [{ code: 'BF021', severity: 'error', issue: 'https://github.com/piconic-ai/barefootjs/issues/
|
|
150
|
+
'date-method-uncatalogued': [{ code: 'BF021', severity: 'error', issue: 'https://github.com/piconic-ai/barefootjs/issues/2356' }],
|
|
151
151
|
}
|