-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
Copy pathgetGlobMatchers.js
76 lines (58 loc) · 2.17 KB
/
getGlobMatchers.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
"use strict";
module.exports = {
/**
* @param {string[] | string} _watchPaths
* @param {import("./Server").WatchOptions} watchOptions
* @returns {[string[], import("chokidar").MatchFunction | null]}*/
getGlobbedWatcherPaths(_watchPaths, { disableGlobbing, cwd }) {
const watchPaths = Array.isArray(_watchPaths) ? _watchPaths : [_watchPaths];
if (disableGlobbing === true) {
return [watchPaths, null];
}
const picomatch = require("picomatch");
const isGlob = require("is-glob");
const watchPathGlobs = watchPaths.filter((p) => isGlob(p));
if (watchPathGlobs.length === 0) {
return [watchPaths, null];
}
const globParent = require("glob-parent");
watchPathGlobs.forEach((p) => {
watchPaths[watchPaths.indexOf(p)] = globParent(p);
});
const matcher = picomatch(watchPathGlobs, { cwd, dot: true });
/** @type {import("chokidar").MatchFunction} */
const ignoreFunction = (p) => !watchPaths.includes(p) && !matcher(p);
// Ignore all paths that don't match any of the globs
return [watchPaths, ignoreFunction];
},
/**
*
* @param {import("./Server").WatchOptions} watchOptions
* @param {import("chokidar").MatchFunction | null } ignoreFunction
* @returns {import("chokidar").Matcher[]}
*/
getIgnoreMatchers({ disableGlobbing, ignored, cwd }, ignoreFunction) {
const _ignored = /** @type {import("chokidar").Matcher[]}**/ (
typeof ignored === "undefined" ? [] : [ignored]
);
const matchers = Array.isArray(ignored) ? ignored : _ignored;
if (disableGlobbing === true) {
return matchers;
}
if (ignoreFunction) {
matchers.push(ignoreFunction);
}
const picomatch = require("picomatch");
const isGlob = require("is-glob");
// Double filter to satisfy typescript. Otherwise nasty casting is required
const ignoredGlobs = matchers
.filter((s) => typeof s === "string")
.filter((s) => isGlob(s));
if (ignoredGlobs.length === 0) {
return matchers;
}
const matcher = picomatch(ignoredGlobs, { cwd, dot: true });
matchers.push(matcher);
return matchers.filter((s) => typeof s !== "string" || !isGlob(s));
},
};