Make Rx a peer dependency
Breaking change
RxJS is not anymore bundled inside Cycle Core. Instead, it is an npm peer dependency. You need to install both Cycle Core and RxJS: npm install rx @cycle/core.
| Before | After |
|---|---|
import {Rx} from '@cycle/core'; |
import Rx from 'rx'; |