marko 6.0.26 → 6.0.28

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.
@@ -1225,7 +1225,13 @@ function isCoreTag(tag) {
1225
1225
  if (tagDef) {
1226
1226
  switch (tagDef.taglibId) {
1227
1227
  case taglibId:
1228
+ return true;
1228
1229
  case interopTaglibId:
1230
+ switch (tagDef.name) {
1231
+ // The body tag is registered in the v5 translator, without this it'd be seen as a core tag.
1232
+ case "body":
1233
+ return false;
1234
+ }
1229
1235
  return true;
1230
1236
  case htmlTaglibId:
1231
1237
  switch (tagDef.name) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "marko",
3
- "version": "6.0.26",
3
+ "version": "6.0.28",
4
4
  "description": "Optimized runtime for Marko templates.",
5
5
  "keywords": [
6
6
  "api",
@@ -48,7 +48,7 @@
48
48
  "build": "node -r ~ts ./scripts/bundle.ts"
49
49
  },
50
50
  "dependencies": {
51
- "@marko/compiler": "^5.39.26",
51
+ "@marko/compiler": "^5.39.27",
52
52
  "csstype": "^3.1.3",
53
53
  "magic-string": "^0.30.17"
54
54
  },