update lodash version

This commit is contained in:
Mauricio Soares 2016-03-14 14:43:20 -03:00
parent d45db023a9
commit 03fdf3fd3b
3 changed files with 5 additions and 5 deletions

View File

@ -38,7 +38,7 @@
"dependencies": {
"es6-promise": "^3.0.2",
"eventemitter3": "^1.1.0",
"lodash": "^3.10.1",
"lodash": "^4.6.1",
"point-geometry": "0.0.0",
"react-pure-render": "^1.0.1",
"scriptjs": "^2.5.7"

View File

@ -20,8 +20,8 @@ import pick from './utils/pick';
import raf from './utils/raf';
import log2 from './utils/math/log2';
import assign from 'lodash/object/assign';
import isNumber from 'lodash/lang/isNumber';
import { assign } from 'lodash/object';
import { isNumber } from 'lodash/lang';
// To avoid Error with React 13, webpack will generate warning not error
// more details is here https://github.com/orgsync/react-list/pull/54

View File

@ -1,5 +1,5 @@
import find from 'lodash/collection/find';
import reduce from 'lodash/collection/reduce';
import { find } from 'lodash/collection';
import { reduce } from 'lodash/collection';
import { Promise } from 'es6-promise';
let $script_ = null;