Skip to content

Commit 19e7ca7

Browse files
author
evanvosberg
committed
Update dependecy.
1 parent cb6e565 commit 19e7ca7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

grunt/tasks/modularize.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ module.exports = function (grunt) {
5353
return options[depName].components;
5454
})
5555
.flatten()
56-
.unique()
56+
.uniq()
5757
.without(name)
5858
.sort(function (a, b) {
5959
return options[a].components.indexOf(b) === -1 ? -1 : 1;
@@ -76,7 +76,7 @@ module.exports = function (grunt) {
7676
}
7777

7878
// Remove duplicates
79-
sources = _.unique(sources);
79+
sources = _.uniq(sources);
8080

8181
// Add module settings to fmd definition
8282
modules[name] = [sources, opts];

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"grunt-jsonlint": "^1.0.4",
3232
"grunt-update-json": "^0.2.0",
3333
"load-grunt-config": "^0.16.0",
34-
"lodash": "^3.5.0"
34+
"lodash": "^4.17.11"
3535
},
3636
"keywords": [
3737
"security",

0 commit comments

Comments
 (0)