We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 705a6e4 commit 66dede7Copy full SHA for 66dede7
file.js
@@ -13,7 +13,7 @@ var difference = require('lodash/difference');
13
var union = require('lodash/union');
14
var isPlainObject = require('lodash/isPlainObject');
15
16
-var glob = require('glob');
+var { globSync } = require('tinyglobby');
17
18
var file = module.exports = {};
19
@@ -62,7 +62,7 @@ file.expand = function(...args) {
62
// Return all matching filepaths.
63
var matches = processPatterns(patterns, function(pattern) {
64
// Find all matching files for this pattern.
65
- return glob.sync(pattern, options);
+ return globSync(pattern, options);
66
});
67
// Filter result set?
68
if (options.filter) {
0 commit comments