Remove unnecessary ramda dependency

This commit is contained in:
Kai Moseley 2017-02-21 09:09:34 +00:00
parent c02f027b7a
commit 365f95d352
2 changed files with 2 additions and 3 deletions

View File

@ -49,7 +49,6 @@
},
"dependencies": {
"lodash": "^4.17.2",
"ramda": "^0.22.1",
"redux": "^3.6.0"
}
}

View File

@ -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';