marko 5.33.2 → 5.33.3

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.
@@ -77,9 +77,14 @@ const TagsCompat = createRenderer(
77
77
  }
78
78
  out.ef();
79
79
  },
80
+ // eslint-disable-next-line no-constant-condition
81
+
82
+
83
+
84
+
85
+
80
86
  {
81
- t: TagsCompatId,
82
- d: "MARKO_DEBUG"
87
+ t: TagsCompatId
83
88
  },
84
89
  {}
85
90
  );
@@ -243,10 +248,16 @@ const RenderBodyComponent = createRenderer(
243
248
  "0"
244
249
  );
245
250
  },
251
+ // eslint-disable-next-line no-constant-condition
252
+
253
+
254
+
255
+
256
+
257
+
246
258
  {
247
259
  t: RenderBodyComponentId,
248
- i: true,
249
- d: "MARKO_DEBUG"
260
+ i: true
250
261
  },
251
262
  {}
252
263
  );
@@ -68,9 +68,14 @@ const TagsCompat = createRenderer(
68
68
  renderFn(out.beginAsync(), input, {}, streamData);
69
69
  out.ef();
70
70
  },
71
+ // eslint-disable-next-line no-constant-condition
72
+
73
+
74
+
75
+
76
+
71
77
  {
72
- t: TagsCompatId,
73
- d: "MARKO_DEBUG"
78
+ t: TagsCompatId
74
79
  },
75
80
  {}
76
81
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "marko",
3
- "version": "5.33.2",
3
+ "version": "5.33.3",
4
4
  "description": "UI Components + streaming, async, high performance, HTML templating for Node.js and the browser.",
5
5
  "keywords": [
6
6
  "front-end",
@@ -77,10 +77,15 @@ const TagsCompat = createRenderer(
77
77
  }
78
78
  out.ef();
79
79
  },
80
- {
81
- t: TagsCompatId,
82
- d: "MARKO_DEBUG",
83
- },
80
+ // eslint-disable-next-line no-constant-condition
81
+ "MARKO_DEBUG"
82
+ ? {
83
+ t: TagsCompatId,
84
+ d: true,
85
+ }
86
+ : {
87
+ t: TagsCompatId,
88
+ },
84
89
  {},
85
90
  );
86
91
 
@@ -243,11 +248,17 @@ const RenderBodyComponent = createRenderer(
243
248
  "0",
244
249
  );
245
250
  },
246
- {
247
- t: RenderBodyComponentId,
248
- i: true,
249
- d: "MARKO_DEBUG",
250
- },
251
+ // eslint-disable-next-line no-constant-condition
252
+ "MARKO_DEBUG"
253
+ ? {
254
+ t: RenderBodyComponentId,
255
+ i: true,
256
+ d: true,
257
+ }
258
+ : {
259
+ t: RenderBodyComponentId,
260
+ i: true,
261
+ },
251
262
  {},
252
263
  );
253
264
 
@@ -68,10 +68,15 @@ const TagsCompat = createRenderer(
68
68
  renderFn(out.beginAsync(), input, {}, streamData);
69
69
  out.ef();
70
70
  },
71
- {
72
- t: TagsCompatId,
73
- d: "MARKO_DEBUG",
74
- },
71
+ // eslint-disable-next-line no-constant-condition
72
+ "MARKO_DEBUG"
73
+ ? {
74
+ t: TagsCompatId,
75
+ d: true,
76
+ }
77
+ : {
78
+ t: TagsCompatId,
79
+ },
75
80
  {},
76
81
  );
77
82