mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
push redux-saga to major release 1.0.1. (#6300)
This commit is contained in:
parent
04ce3e7174
commit
d2ef34429c
|
@ -11,13 +11,13 @@
|
|||
"es6-promise": "4.1.1",
|
||||
"isomorphic-unfetch": "2.0.0",
|
||||
"next": "latest",
|
||||
"next-redux-saga": "3.0.0",
|
||||
"next-redux-saga": "4.0.0",
|
||||
"next-redux-wrapper": "2.0.0",
|
||||
"react": "^16.0.0",
|
||||
"react-dom": "^16.0.0",
|
||||
"react-redux": "5.0.7",
|
||||
"redux": "4.0.0",
|
||||
"redux-saga": "0.16.0"
|
||||
"redux": "4.0.1",
|
||||
"redux-saga": "1.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"redux-devtools-extension": "2.13.2"
|
||||
|
|
|
@ -29,4 +29,4 @@ class MyApp extends App {
|
|||
}
|
||||
}
|
||||
|
||||
export default withRedux(createStore)(withReduxSaga({ async: true })(MyApp))
|
||||
export default withRedux(createStore)(withReduxSaga(MyApp))
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
/* global fetch */
|
||||
|
||||
import { delay } from 'redux-saga'
|
||||
import { all, call, put, take, takeLatest } from 'redux-saga/effects'
|
||||
import { all, call, delay, put, take, takeLatest } from 'redux-saga/effects'
|
||||
import es6promise from 'es6-promise'
|
||||
import 'isomorphic-unfetch'
|
||||
|
||||
|
@ -13,7 +12,7 @@ function * runClockSaga () {
|
|||
yield take(actionTypes.START_CLOCK)
|
||||
while (true) {
|
||||
yield put(tickClock(false))
|
||||
yield call(delay, 1000)
|
||||
yield delay(1000)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue