ripple 0.2.17 → 0.2.18

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.
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "Ripple is a TypeScript UI framework for the web",
4
4
  "license": "MIT",
5
5
  "author": "Dominic Gannaway",
6
- "version": "0.2.17",
6
+ "version": "0.2.18",
7
7
  "type": "module",
8
8
  "module": "src/runtime/index.js",
9
9
  "main": "src/runtime/index.js",
@@ -131,6 +131,7 @@ export class RippleSet extends Set {
131
131
  }
132
132
 
133
133
  has(value) {
134
+ var block = scope();
134
135
  var has = super.has(value);
135
136
  var tracked_items = this.#tracked_items;
136
137
  var t = tracked_items.get(value);