Skip to content

Commit

Permalink
Upgrade: Update all dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
cowboy authored and phated committed Dec 28, 2018
1 parent 740af08 commit 51f3e22
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
2 changes: 1 addition & 1 deletion lib/findup-sync.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ module.exports = function(patterns, options) {
var files, lastpath;
do {
// Search for files matching patterns.
files = _.chain(patterns).map(function(pattern) {
files = _(patterns).map(function(pattern) {
return glob.sync(pattern, globOptions);
}).flatten().uniq().value();
// Return file if found.
Expand Down
16 changes: 10 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,17 @@
"test": "grunt nodeunit"
},
"dependencies": {
"glob": "~3.1.14",
"lodash": "~0.9.1"
"glob": "~3.1.21",
"lodash": "~1.0.1"
},
"devDependencies": {
"grunt": "~0.4.0a",
"grunt-contrib-jshint": "~0.1.0",
"grunt-contrib-nodeunit": "~0.1.0"
"grunt": "~0.4.0",
"grunt-contrib-jshint": "~0.2.0",
"grunt-contrib-nodeunit": "~0.1.2"
},
"keywords": []
"keywords": [
"find",
"glob",
"file"
]
}

0 comments on commit 51f3e22

Please sign in to comment.