mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-01-31 11:51:41 +03:00
Merge remote-tracking branch 'lo/dependency/lodash/upgrade'
This commit is contained in:
commit
778803eb97
|
@ -61,7 +61,7 @@
|
||||||
"react": "^0.14.0"
|
"react": "^0.14.0"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"lodash": "^3.10.1",
|
"lodash": "^4.2.0",
|
||||||
"react-redux": "^4.0.0",
|
"react-redux": "^4.0.0",
|
||||||
"redux": "^3.2.1"
|
"redux": "^3.2.1"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import difference from 'lodash/array/difference';
|
import {difference} from 'lodash/array';
|
||||||
|
|
||||||
export const ActionTypes = {
|
export const ActionTypes = {
|
||||||
PERFORM_ACTION: 'PERFORM_ACTION',
|
PERFORM_ACTION: 'PERFORM_ACTION',
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import mapValues from 'lodash/object/mapValues';
|
import {mapValues} from 'lodash/object';
|
||||||
import identity from 'lodash/utility/identity';
|
import {identity} from 'lodash/utility';
|
||||||
|
|
||||||
export default function persistState(sessionId, deserializeState = identity, deserializeAction = identity) {
|
export default function persistState(sessionId, deserializeState = identity, deserializeAction = identity) {
|
||||||
if (!sessionId) {
|
if (!sessionId) {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user