@ryupold/vode 1.8.5 → 1.8.6
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/.github/workflows/publish.yml +1 -1
- package/.github/workflows/tests.yml +1 -1
- package/README.md +55 -5
- package/dist/vode.cjs.min.js +1 -1
- package/dist/vode.d.ts +5 -0
- package/dist/vode.es5.min.js +1 -1
- package/dist/vode.js +72 -12
- package/dist/vode.min.js +1 -1
- package/dist/vode.min.mjs +1 -1
- package/dist/vode.mjs +72 -12
- package/package.json +1 -1
- package/src/vode.ts +83 -18
- package/test/index.ts +2 -0
- package/test/tests-mount-unmount.ts +1140 -0
package/test/index.ts
CHANGED
|
@@ -16,6 +16,7 @@ import mergeClassTests from "./tests-mergeClass";
|
|
|
16
16
|
import mergeStyleTests from "./tests-mergeStyle";
|
|
17
17
|
import mergePropsTests from "./tests-mergeProps";
|
|
18
18
|
import stateContextTests from "./tests-state-context";
|
|
19
|
+
import mountUnmountTests from "./tests-mount-unmount";
|
|
19
20
|
|
|
20
21
|
const tests = {
|
|
21
22
|
...vodeTests,
|
|
@@ -23,6 +24,7 @@ const tests = {
|
|
|
23
24
|
...defuseTests,
|
|
24
25
|
...hydrateTests,
|
|
25
26
|
...memoTests,
|
|
27
|
+
...mountUnmountTests,
|
|
26
28
|
|
|
27
29
|
...createStateTests,
|
|
28
30
|
...createPatchTests,
|