lodash-amd-import

Automatically imports used lodash modules in your code.

mokkabonna

272

0

0.3.0

MIT

GitHub

lodash-amd-import package

Automatically imports used lodash modules in your code.

Meant to be used together with https://github.com/mokkabonna/lodash-requirejs-loader-plugin

Just use _.map _.flatten _.sortBy etc from lodash as you normally do, press alt-l alt-i and a import string of _!flatten,map,sortBy will be genereated and replace the existing _!... import string you have.

Go from

define([
  '_!map'
], function(_) {

  var uniqueSquares = _.map(_.uniq(_.flatten([9, [2, 7], 7, 2, 2])), function(num) {
    return num * 2;
  });
});

to:

define([
  '_!flatten,map,uniq'
], function(_) {

  var uniqueSquares = _.map(_.uniq(_.flatten([9, [2, 7], 7, 2, 2])), function(num) {
    return num * 2;
  });
});

just with a keystroke.