@karmaniverous/jeeves-watcher 0.6.3 → 0.6.4

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.
@@ -462,7 +462,7 @@ function createRuleAjv() {
462
462
  keyword: 'glob',
463
463
  type: 'string',
464
464
  schemaType: 'string',
465
- validate: (pattern, data) => picomatch.isMatch(data, pattern),
465
+ validate: (pattern, data) => picomatch.isMatch(data, pattern, { dot: true, nocase: true }),
466
466
  });
467
467
  return ajv;
468
468
  }
package/dist/index.js CHANGED
@@ -911,7 +911,7 @@ function createRuleAjv() {
911
911
  keyword: 'glob',
912
912
  type: 'string',
913
913
  schemaType: 'string',
914
- validate: (pattern, data) => picomatch.isMatch(data, pattern),
914
+ validate: (pattern, data) => picomatch.isMatch(data, pattern, { dot: true, nocase: true }),
915
915
  });
916
916
  return ajv;
917
917
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@karmaniverous/jeeves-watcher",
3
- "version": "0.6.3",
3
+ "version": "0.6.4",
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",