Skip to content

Commit

Permalink
fix(loader): upgrade lodash to 4.6, glob and eventemitter2
Browse files Browse the repository at this point in the history
  • Loading branch information
FGRibreau committed Mar 19, 2016
1 parent e8de1f7 commit 6dee1dd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/loader.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ var _ = require('lodash');
*/
var loader = {
getList: function () {
return _.compose(_.flatten, _.uniq)(this.getLists());
return _.flowRight(_.flatten, _.uniq)(this.getLists());
},

getLists: function () {
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@
"dependencies": {
"async": "^1.4.2",
"cjson": "0.3.x",
"eventemitter2": "~0.4.14",
"glob": "^5.0.14",
"lodash": "3.x.x",
"eventemitter2": "^1.0.0",
"glob": "^7.0.3",
"lodash": "^4.6.1",
"mu2": "~0.5.20",
"node-range": "0.1.x"
},
Expand Down

0 comments on commit 6dee1dd

Please sign in to comment.