When using redux-saga@0.14.4 everything is fine
But fails when using redux-saga@0.14.5
I think the reason for this to fails is this PR: redux-saga/redux-saga#895
Error message:
./userSaga import should occur before import of redux-saga/effects import/order
Code:
import { fork } from 'redux-saga/effects';
import connectionFlow from './userSaga';
When using
redux-saga@0.14.4everything is fineBut fails when using
redux-saga@0.14.5I think the reason for this to fails is this PR: redux-saga/redux-saga#895
Error message:
./userSaga import should occur before import of redux-saga/effects import/orderCode: