Skip to content

Releases: TriPSs/react-esc

v4.0.0-beta.10

07 Mar 09:54

Choose a tag to compare

v4.0.0-beta.10 Pre-release
Pre-release
Update version

v4.0.0-0

07 Mar 09:37

Choose a tag to compare

v4.0.0-0 Pre-release
Pre-release
4.0.0-0

v3.5.0

20 Feb 06:45

Choose a tag to compare

v3.4.0

18 Dec 18:52

Choose a tag to compare

Changes

  • All deps have been updated

Breaking changes

All testing related dependencies has been removed, from now on you will be advised to use Jest.

v3.2.2

20 Nov 18:16

Choose a tag to compare

3.2.2

v3.0.0

26 Jul 07:45

Choose a tag to compare

Whats changed

  • Added support for JSS

Issues

v2.5.0

18 Jul 07:37

Choose a tag to compare

Update dependencies + Fix HRM

v2.4.0

25 Apr 20:25

Choose a tag to compare

  1. Webpack config update
  2. Update css/sass config
  3. Root import sass works again

v2.3.0

21 Apr 14:09

Choose a tag to compare

Updated deps

v1.7.0

21 Apr 12:05

Choose a tag to compare

You can now load your reducers and AppContainer by placing them in the following location:

store/reducers.js Export a function like this:

export default asyncReducers => combineReducers({
  router,
  ...initialReducers,
  ...asyncReducers,
})

And the AppContainer
containers/AppContainer.js

To enable this add this to your config:

{
  loadFile: {
    reducers    : true,
    AppContainer: true,
  }
}