@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