We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
fast-glob
1 parent 8aadde8 commit 3706920Copy full SHA for 3706920
index.js
@@ -24,7 +24,7 @@ const checkCwdOption = options => {
24
}
25
};
26
27
-const getPathString = p => p instanceof fs.Stats ? p.path : p;
+const getPathString = p => p.stats instanceof fs.Stats ? p.path : p;
28
29
const generateGlobTasks = (patterns, taskOptions) => {
30
patterns = arrayUnion([].concat(patterns));
package.json
@@ -58,8 +58,8 @@
58
"dependencies": {
59
"@types/glob": "^7.1.1",
60
"array-union": "^2.1.0",
61
- "dir-glob": "^2.2.2",
62
- "fast-glob": "^2.2.6",
+ "dir-glob": "^3.0.1",
+ "fast-glob": "^3.0.3",
63
"glob": "^7.1.3",
64
"ignore": "^5.1.1",
65
"merge2": "^1.2.3",
0 commit comments