Remove unnecessary ramda dependency
This commit is contained in:
parent
c02f027b7a
commit
365f95d352
|
@ -49,7 +49,6 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"lodash": "^4.17.2",
|
||||
"ramda": "^0.22.1",
|
||||
"redux": "^3.6.0"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -36,8 +36,8 @@ type CallReducerInterface = {
|
|||
import {
|
||||
PROP_TYPES,
|
||||
} from './structure';
|
||||
import { compose } from 'ramda';
|
||||
import { reduce } from 'lodash';
|
||||
import reduce from 'lodash/reduce';
|
||||
import compose from 'lodash/fp/compose';
|
||||
import { createShapeReducer } from './reducers/objectReducer';
|
||||
import { createArrayReducer } from './reducers/arrayReducer';
|
||||
import { createPrimitiveReducer } from './reducers/primitiveReducer';
|
||||
|
|
Loading…
Reference in New Issue