marko 5.35.15 → 5.35.16
Sign up to get free protection for your applications and to get access to all the features.
@@ -139,7 +139,8 @@ function addComponentsFromContext(componentsContext, componentsToHydrate) {
|
|
139
139
|
|
140
140
|
if (typeof renderBody === "function" && renderBody.toJSON === w10ToJSON) {
|
141
141
|
flags |= FLAG_HAS_RENDER_BODY;
|
142
|
-
renderBody =
|
142
|
+
renderBody = undefined;
|
143
|
+
if (input) input.renderBody = undefined;
|
143
144
|
}
|
144
145
|
|
145
146
|
var extra = {
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "marko",
|
3
|
-
"version": "5.35.
|
3
|
+
"version": "5.35.16",
|
4
4
|
"description": "UI Components + streaming, async, high performance, HTML templating for Node.js and the browser.",
|
5
5
|
"keywords": [
|
6
6
|
"front-end",
|
@@ -65,8 +65,8 @@
|
|
65
65
|
"build": "babel ./src --out-dir ./dist --extensions .js --copy-files --config-file ../../babel.config.js --env-name=production"
|
66
66
|
},
|
67
67
|
"dependencies": {
|
68
|
-
"@marko/compiler": "^5.37.
|
69
|
-
"@marko/translator-default": "^6.0.
|
68
|
+
"@marko/compiler": "^5.37.11",
|
69
|
+
"@marko/translator-default": "^6.0.13",
|
70
70
|
"app-module-path": "^2.2.0",
|
71
71
|
"argly": "^1.2.0",
|
72
72
|
"browser-refresh-client": "1.1.4",
|
@@ -139,7 +139,8 @@ function addComponentsFromContext(componentsContext, componentsToHydrate) {
|
|
139
139
|
|
140
140
|
if (typeof renderBody === "function" && renderBody.toJSON === w10ToJSON) {
|
141
141
|
flags |= FLAG_HAS_RENDER_BODY;
|
142
|
-
renderBody =
|
142
|
+
renderBody = undefined;
|
143
|
+
if (input) input.renderBody = undefined;
|
143
144
|
}
|
144
145
|
|
145
146
|
var extra = {
|