@evilmartians/lefthook 2.0.3 → 2.0.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.
package/README.md CHANGED
@@ -22,7 +22,7 @@ A Git hooks manager for Node.js, Ruby, Python and many other types of projects.
22
22
  With **Go** (>= 1.25):
23
23
 
24
24
  ```bash
25
- go install github.com/evilmartians/lefthook/v2@v2.0.3
25
+ go install github.com/evilmartians/lefthook/v2@v2.0.4
26
26
  ```
27
27
 
28
28
  * or as a go tool
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@evilmartians/lefthook",
3
- "version": "2.0.3",
3
+ "version": "2.0.4",
4
4
  "description": "Simple git hooks manager",
5
5
  "main": "bin/index.js",
6
6
  "files": [
package/schema.json CHANGED
@@ -433,7 +433,7 @@
433
433
  "type": "object"
434
434
  }
435
435
  },
436
- "$comment": "Last updated on 2025.11.07.",
436
+ "$comment": "Last updated on 2025.11.13.",
437
437
  "properties": {
438
438
  "min_version": {
439
439
  "type": "string",
@@ -497,6 +497,15 @@
497
497
  "type": "boolean",
498
498
  "description": "Skip running Git LFS hooks (enabled by default)"
499
499
  },
500
+ "glob_matcher": {
501
+ "type": "string",
502
+ "enum": [
503
+ "gobwas",
504
+ "doublestar"
505
+ ],
506
+ "description": "Choose the glob matching engine: 'gobwas' (default) or 'doublestar' (standard ** behavior)",
507
+ "default": "gobwas"
508
+ },
500
509
  "remotes": {
501
510
  "items": {
502
511
  "$ref": "#/$defs/Remote"