Skip to content

Commit

Permalink
Update dependecy.
Browse files Browse the repository at this point in the history
  • Loading branch information
evanvosberg committed Sep 13, 2018
1 parent cb6e565 commit 19e7ca7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions grunt/tasks/modularize.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ module.exports = function (grunt) {
return options[depName].components;
})
.flatten()
.unique()
.uniq()
.without(name)
.sort(function (a, b) {
return options[a].components.indexOf(b) === -1 ? -1 : 1;
Expand All @@ -76,7 +76,7 @@ module.exports = function (grunt) {
}

// Remove duplicates
sources = _.unique(sources);
sources = _.uniq(sources);

// Add module settings to fmd definition
modules[name] = [sources, opts];
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"grunt-jsonlint": "^1.0.4",
"grunt-update-json": "^0.2.0",
"load-grunt-config": "^0.16.0",
"lodash": "^3.5.0"
"lodash": "^4.17.11"
},
"keywords": [
"security",
Expand Down

0 comments on commit 19e7ca7

Please sign in to comment.