cspell-glob 8.10.2 → 8.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/GlobMatcher.js +1 -1
- package/package.json +3 -3
package/dist/GlobMatcher.js
CHANGED
|
@@ -28,7 +28,7 @@ export class GlobMatcher {
|
|
|
28
28
|
// traceMode && console.warn('GlobMatcher(%d)', this.id, new Error('trace'));
|
|
29
29
|
const options = typeof rootOrOptions === 'string' || rootOrOptions instanceof URL
|
|
30
30
|
? { root: rootOrOptions.toString() }
|
|
31
|
-
: rootOrOptions ?? {};
|
|
31
|
+
: (rootOrOptions ?? {});
|
|
32
32
|
const mode = options.mode ?? 'exclude';
|
|
33
33
|
const isExcludeMode = mode !== 'include';
|
|
34
34
|
const nodePath = options.nodePath ?? _nodePath ?? Path;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cspell-glob",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.11.0",
|
|
4
4
|
"description": "Glob matcher for cspell",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cspell",
|
|
@@ -54,11 +54,11 @@
|
|
|
54
54
|
"node": ">=18"
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|
|
57
|
-
"@cspell/url": "8.
|
|
57
|
+
"@cspell/url": "8.11.0",
|
|
58
58
|
"micromatch": "^4.0.7"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
61
|
"@types/micromatch": "^4.0.9"
|
|
62
62
|
},
|
|
63
|
-
"gitHead": "
|
|
63
|
+
"gitHead": "2b85b2b458b1117870a4f0aee18fb45ce991848d"
|
|
64
64
|
}
|