octane 0.1.28 → 0.1.29

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.
Files changed (2) hide show
  1. package/dist/runtime.js +3 -0
  2. package/package.json +1 -1
package/dist/runtime.js CHANGED
@@ -12512,6 +12512,9 @@ function renderBranchSlot(parentScope, slotKey, state, domParent, next, body, ma
12512
12512
  );
12513
12513
  }
12514
12514
  }
12515
+ if (hydration !== null && !state.borrowed && state.end !== null) {
12516
+ hydration.node = state.end.nextSibling;
12517
+ }
12515
12518
  }
12516
12519
  function ifBlock(parentScope, slotKey, domParent, cond, thenBody, elseBody, anchor, env) {
12517
12520
  const hydration = activeHydration();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "octane",
3
- "version": "0.1.28",
3
+ "version": "0.1.29",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "sideEffects": false,