Hey, it looks like your built file contains all of lodash@4.6.1 whereas it should really only contain the functions that you use.
You can fix this pretty easily by requireing the function files directly instead of requireing the toplevel lodash object, e.g. var some = require('lodash/some').
That aside, this looks like a handy library. Thanks for publishing it!
Hey, it looks like your built file contains all of
lodash@4.6.1
whereas it should really only contain the functions that you use.You can fix this pretty easily by
require
ing the function files directly instead ofrequire
ing the toplevel lodash object, e.g.var some = require('lodash/some')
.That aside, this looks like a handy library. Thanks for publishing it!