Skip to content

Commit

Permalink
Upgrade fast-glob package to v3 (#126)
Browse files Browse the repository at this point in the history
  • Loading branch information
yhatt authored and sindresorhus committed Jun 29, 2019
1 parent 8aadde8 commit 3706920
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion index.js
Expand Up @@ -24,7 +24,7 @@ const checkCwdOption = options => {
}
};

const getPathString = p => p instanceof fs.Stats ? p.path : p;
const getPathString = p => p.stats instanceof fs.Stats ? p.path : p;

const generateGlobTasks = (patterns, taskOptions) => {
patterns = arrayUnion([].concat(patterns));
Expand Down
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -58,8 +58,8 @@
"dependencies": {
"@types/glob": "^7.1.1",
"array-union": "^2.1.0",
"dir-glob": "^2.2.2",
"fast-glob": "^2.2.6",
"dir-glob": "^3.0.1",
"fast-glob": "^3.0.3",
"glob": "^7.1.3",
"ignore": "^5.1.1",
"merge2": "^1.2.3",
Expand Down

0 comments on commit 3706920

Please sign in to comment.