Comparing version 1.11.0 to 1.11.1
@@ -0,1 +1,5 @@ | ||
### **1.11.1** (2022-06-01) | ||
- Correct error in useEvt | ||
## **1.11.0** (2022-06-01) | ||
@@ -2,0 +6,0 @@ |
@@ -39,3 +39,3 @@ "use strict"; | ||
effect(ctx); | ||
return function () { ctx.done; }; | ||
return function () { ctx.done(); }; | ||
}, deps); | ||
@@ -42,0 +42,0 @@ } |
{ | ||
"name": "evt", | ||
"version": "1.11.0", | ||
"version": "1.11.1", | ||
"description": "Type safe replacement for node's EventEmitter", | ||
@@ -5,0 +5,0 @@ "repository": { |
@@ -46,3 +46,3 @@ import { Evt } from "../lib/Evt"; | ||
return ()=> { ctx.done; }; | ||
return ()=> { ctx.done(); }; | ||
}, | ||
@@ -49,0 +49,0 @@ deps |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
2570604