This repository was archived by the owner on Aug 4, 2022. It is now read-only.
Releases: effector/root
Releases · effector/root
v1.4.0
What's Changed
- Update README by @olejech in #10
- allow effector 22 as peer dependency by @domosedov in #13
- build(deps): bump tmpl from 1.0.4 to 1.0.5 by @dependabot in #12
- build(deps): bump path-parse from 1.0.6 to 1.0.7 by @dependabot in #11
- build(deps): bump glob-parent from 5.1.1 to 5.1.2 by @dependabot in #9
- build(deps): bump ws from 7.4.4 to 7.4.6 by @dependabot in #8
- build(deps): bump browserslist from 4.16.3 to 4.16.6 by @dependabot in #7
- build(deps): bump hosted-git-info from 2.8.8 to 2.8.9 by @dependabot in #6
New Contributors
- @olejech made their first contribution in #10
- @domosedov made their first contribution in #13
Full Changelog: v1.3.0...v1.4.0
v1.3.0
Fixes
- Removed babel traverse dependency. This reduces the total size of the package and allows you to not install babel if you don't use it.
v1.2.0
Add support for Create React App via effector-root/macro
Just import from /macro to log units:
import { createStore, createEvent } from 'effector-root/macro';
const increment = createEvent();
const $counter = createStore(0);
$counter.on(increment, (value) => value + 1);Fixed support of ESModules bundlers
Added export scheme — fcaa04c
v1.1.0
Added /compat version to support IE11
You can easily use effector/compat in your application with effector-root, just:
import { root } from 'effector-root/compat';Note: `root` domain from `effector-root/compat` is not the same domain as from `effector-root`