bobe 0.0.64 → 0.0.66
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/dist/bobe.cjs.js +4 -1
- package/dist/bobe.cjs.js.map +1 -1
- package/dist/bobe.compiler.cjs.js +4 -1
- package/dist/bobe.compiler.cjs.js.map +1 -1
- package/dist/bobe.compiler.esm.js +4 -1
- package/dist/bobe.compiler.esm.js.map +1 -1
- package/dist/bobe.esm.js +4 -1
- package/dist/bobe.esm.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.umd.js +4 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +3 -3
package/dist/bobe.cjs.js
CHANGED
|
@@ -2769,7 +2769,10 @@ const effect = (callback, depOrOpt, opt) => {
|
|
|
2769
2769
|
newDeps.push(dep);
|
|
2770
2770
|
}
|
|
2771
2771
|
}
|
|
2772
|
-
|
|
2772
|
+
if (isArray) {
|
|
2773
|
+
return aoye.effect(callback, newDeps, option);
|
|
2774
|
+
}
|
|
2775
|
+
return aoye.effect(callback, option);
|
|
2773
2776
|
};
|
|
2774
2777
|
|
|
2775
2778
|
Object.defineProperty(exports, "Store", {
|