@karmaniverous/jeeves-watcher 0.9.8 → 0.9.9

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.
@@ -201,9 +201,9 @@ async function* walk(dir) {
201
201
  async function listFilesFromGlobs(patterns, ignored = []) {
202
202
  const normPatterns = patterns.map((p) => normalizeSlashes(p));
203
203
  const normIgnored = ignored.map((p) => normalizeSlashes(p));
204
- const match = picomatch(normPatterns, { dot: true });
204
+ const match = picomatch(normPatterns, { dot: true, nocase: true });
205
205
  const ignore = normIgnored.length
206
- ? picomatch(normIgnored, { dot: true })
206
+ ? picomatch(normIgnored, { dot: true, nocase: true })
207
207
  : () => false;
208
208
  const bases = Array.from(new Set(patterns.map(globBase)));
209
209
  const seen = new Set();
package/dist/index.js CHANGED
@@ -1363,9 +1363,9 @@ async function* walk(dir) {
1363
1363
  async function listFilesFromGlobs(patterns, ignored = []) {
1364
1364
  const normPatterns = patterns.map((p) => normalizeSlashes(p));
1365
1365
  const normIgnored = ignored.map((p) => normalizeSlashes(p));
1366
- const match = picomatch(normPatterns, { dot: true });
1366
+ const match = picomatch(normPatterns, { dot: true, nocase: true });
1367
1367
  const ignore = normIgnored.length
1368
- ? picomatch(normIgnored, { dot: true })
1368
+ ? picomatch(normIgnored, { dot: true, nocase: true })
1369
1369
  : () => false;
1370
1370
  const bases = Array.from(new Set(patterns.map(globBase)));
1371
1371
  const seen = new Set();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@karmaniverous/jeeves-watcher",
3
- "version": "0.9.8",
3
+ "version": "0.9.9",
4
4
  "author": "Jason Williscroft",
5
5
  "description": "Filesystem watcher that keeps a Qdrant vector store in sync with document changes",
6
6
  "license": "BSD-3-Clause",