import specific module

This commit is contained in:
Mauricio Soares 2016-03-14 14:52:53 -03:00
parent 03fdf3fd3b
commit ac3eeec822
2 changed files with 4 additions and 4 deletions

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';
import { isNumber } from 'lodash/lang';
import assign from 'lodash/assign';
import isNumber from 'lodash/isNumber';
// 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';
import { reduce } from 'lodash/collection';
import find from 'lodash/find';
import reduce from 'lodash/reduce';
import { Promise } from 'es6-promise';
let $script_ = null;