Skip to content

Commit 778803e

Browse files
committed
Merge remote-tracking branch 'lo/dependency/lodash/upgrade'
2 parents 8316de0 + 9b6f3f7 commit 778803e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
"react": "^0.14.0"
6262
},
6363
"dependencies": {
64-
"lodash": "^3.10.1",
64+
"lodash": "^4.2.0",
6565
"react-redux": "^4.0.0",
6666
"redux": "^3.2.1"
6767
}

src/instrument.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import difference from 'lodash/array/difference';
1+
import {difference} from 'lodash/array';
22

33
export const ActionTypes = {
44
PERFORM_ACTION: 'PERFORM_ACTION',

src/persistState.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import mapValues from 'lodash/object/mapValues';
2-
import identity from 'lodash/utility/identity';
1+
import {mapValues} from 'lodash/object';
2+
import {identity} from 'lodash/utility';
33

44
export default function persistState(sessionId, deserializeState = identity, deserializeAction = identity) {
55
if (!sessionId) {

0 commit comments

Comments
 (0)