Skip to content

Commit

Permalink
chore: update lodash to 4.11.1
Browse files Browse the repository at this point in the history
  • Loading branch information
blond committed Apr 30, 2016
1 parent 4b61899 commit 69f8319
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 5 additions & 3 deletions lib/node/node.js
Expand Up @@ -447,15 +447,17 @@ module.exports = inherit(/** @lends Node.prototype */ {
* @returns {Promise}
*/
requireNodeSources: function (sourcesByNodes) {
var _this = this;

return _(sourcesByNodes)
.map(function (sources, node) {
return this._makePlatform.requireNodeSources(node, sources)
return _this._makePlatform.requireNodeSources(node, sources)
.then(function (nodeSources) {
return [node, nodeSources];
});
}, this)
})
.thru(Vow.all).value()
.then(_.zipObject);
.then(_.fromPairs);
},

/**
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -52,7 +52,7 @@
"enb-source-map": "1.9.0",
"glob": "7.0.3",
"inherit": "2.2.3",
"lodash": "3.10.1",
"lodash": "4.11.1",
"puml-link": "0.0.1",
"resolve": "1.1.7",
"serve-favicon": "2.3.0",
Expand Down

0 comments on commit 69f8319

Please sign in to comment.