Skip to content

Commit

Permalink
Updates globby to version 7.1.1
Browse files Browse the repository at this point in the history
Maintains the current defaults to avoid breaking B/C

Fixes #63
  • Loading branch information
realityking committed Mar 24, 2018
1 parent cdd9c76 commit 98dd4b6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ function safeCheck(file) {
}

module.exports = (patterns, opts) => {
opts = Object.assign({}, opts);
opts = Object.assign({expandDirectories: false, nodir: false}, opts);

const force = opts.force;
delete opts.force;
Expand All @@ -46,7 +46,7 @@ module.exports = (patterns, opts) => {
};

module.exports.sync = (patterns, opts) => {
opts = Object.assign({}, opts);
opts = Object.assign({expandDirectories: false, nodir: false}, opts);

const force = opts.force;
delete opts.force;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"filesystem"
],
"dependencies": {
"globby": "^6.1.0",
"globby": "^7.1.1",
"is-path-cwd": "^1.0.0",
"is-path-in-cwd": "^1.0.0",
"p-map": "^1.1.1",
Expand Down

0 comments on commit 98dd4b6

Please sign in to comment.