Skip to content
This repository was archived by the owner on Aug 4, 2022. It is now read-only.

Releases: effector/root

v1.4.0

13 Oct 04:31
81750a1

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.3.0...v1.4.0

v1.3.0

15 Apr 16:47

Choose a tag to compare

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

16 Mar 19:43

Choose a tag to compare

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

24 Sep 11:08

Choose a tag to compare

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`