Comparing version 1.5.15 to 1.5.16
# Changelog | ||
## 1.5.16- 2024-02-16 | ||
- Fix bug where false variable matched incorrectly in the switch | ||
## 1.5.15- 2024-02-14 | ||
- Fix bug where web components where not registered correctly in the h function | ||
## 1.5.14- 2023-04-04 | ||
@@ -4,0 +12,0 @@ |
@@ -141,2 +141,6 @@ // Safari Polyfills | ||
case isNode(variable) && variable: { | ||
if (variable === false) { | ||
resolvedVariables.push(String(variable)); | ||
break; | ||
} | ||
insertNodes.push(variable); | ||
@@ -143,0 +147,0 @@ resolvedVariables.push(template); |
{ | ||
"name": "hydro-js", | ||
"version": "1.5.15", | ||
"version": "1.5.16", | ||
"description": "A lightweight reactive library", | ||
@@ -5,0 +5,0 @@ "type": "module", |
@@ -247,2 +247,6 @@ declare global { | ||
case isNode(variable) && variable: { | ||
if (variable === false) { | ||
resolvedVariables.push(String(variable)); | ||
break; | ||
} | ||
insertNodes.push(variable); | ||
@@ -249,0 +253,0 @@ resolvedVariables.push(template); |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
282238
5157