@evilmartians/lefthook-installer 2.0.12 → 2.0.14

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.
Files changed (3) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
  3. package/schema.json +85 -2
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.12
25
+ go install github.com/evilmartians/lefthook/v2@v2.0.14
26
26
  ```
27
27
 
28
28
  * or as a go tool
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@evilmartians/lefthook-installer",
3
- "version": "2.0.12",
3
+ "version": "2.0.14",
4
4
  "description": "Simple git hooks manager",
5
5
  "main": "bin/index.js",
6
6
  "files": [
package/schema.json CHANGED
@@ -442,7 +442,7 @@
442
442
  "type": "object"
443
443
  }
444
444
  },
445
- "$comment": "Last updated on 2025.12.10.",
445
+ "$comment": "Last updated on 2025.12.19.",
446
446
  "properties": {
447
447
  "min_version": {
448
448
  "type": "string",
@@ -621,6 +621,89 @@
621
621
  "$ref": "#/$defs/Hook"
622
622
  }
623
623
  },
624
- "additionalProperties": false,
624
+ "additionalProperties": {
625
+ "properties": {
626
+ "parallel": {
627
+ "type": "boolean"
628
+ },
629
+ "piped": {
630
+ "type": "boolean"
631
+ },
632
+ "follow": {
633
+ "type": "boolean"
634
+ },
635
+ "fail_on_changes": {
636
+ "type": "string",
637
+ "enum": [
638
+ "true",
639
+ "1",
640
+ "0",
641
+ "false",
642
+ "never",
643
+ "always",
644
+ "ci",
645
+ "non-ci"
646
+ ]
647
+ },
648
+ "fail_on_changes_diff": {
649
+ "type": "boolean"
650
+ },
651
+ "files": {
652
+ "type": "string"
653
+ },
654
+ "exclude_tags": {
655
+ "items": {
656
+ "type": "string"
657
+ },
658
+ "type": "array"
659
+ },
660
+ "exclude": {
661
+ "items": {
662
+ "type": "string"
663
+ },
664
+ "type": "array"
665
+ },
666
+ "skip": {
667
+ "oneOf": [
668
+ {
669
+ "type": "boolean"
670
+ },
671
+ {
672
+ "type": "array"
673
+ }
674
+ ]
675
+ },
676
+ "only": {
677
+ "oneOf": [
678
+ {
679
+ "type": "boolean"
680
+ },
681
+ {
682
+ "type": "array"
683
+ }
684
+ ]
685
+ },
686
+ "jobs": {
687
+ "items": {
688
+ "$ref": "#/$defs/Job"
689
+ },
690
+ "type": "array"
691
+ },
692
+ "commands": {
693
+ "additionalProperties": {
694
+ "$ref": "#/$defs/Command"
695
+ },
696
+ "type": "object"
697
+ },
698
+ "scripts": {
699
+ "additionalProperties": {
700
+ "$ref": "#/$defs/Script"
701
+ },
702
+ "type": "object"
703
+ }
704
+ },
705
+ "additionalProperties": false,
706
+ "type": "object"
707
+ },
625
708
  "type": "object"
626
709
  }