salsita / prism

React / Redux action composition made simple http://salsita.github.io/prism/
496 stars 24 forks source link

Reduce bundle size by using rxjs modularity #66

Closed gadyonysh closed 7 years ago

gadyonysh commented 7 years ago

Hello,

I want to reduce my app bundle size and not to include all rxjs in redux-elm sagas implementation. I've replaced in RxjsSaga.js and ReduxSaga.js import { Subject } from 'rxjs'; with import { Subject } from 'rxjs/Subject'; as described here After that my app bundle size reduced by ~186kB with no changes in functionality.

Do we really need to include all rxjs inside redux-elm?

tomkis commented 7 years ago

Rxjs is not part of redux-elm (prism) anymore.