@evilmartians/lefthook 1.10.8 → 1.10.10
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 +22 -22
- package/bin/lefthook-darwin-arm64/lefthook +0 -0
- package/bin/lefthook-darwin-x64/lefthook +0 -0
- package/bin/lefthook-freebsd-arm64/lefthook +0 -0
- package/bin/lefthook-freebsd-x64/lefthook +0 -0
- package/bin/lefthook-linux-arm64/lefthook +0 -0
- package/bin/lefthook-linux-x64/lefthook +0 -0
- package/bin/lefthook-openbsd-arm64/lefthook +0 -0
- package/bin/lefthook-openbsd-x64/lefthook +0 -0
- package/bin/lefthook-windows-arm64/lefthook.exe +0 -0
- package/bin/lefthook-windows-x64/lefthook.exe +0 -0
- package/package.json +3 -2
- package/schema.json +23 -3
package/README.md
CHANGED
|
@@ -253,26 +253,26 @@ Check [examples][examples]
|
|
|
253
253
|
* [Lefthook for React/React Native apps](https://blog.logrocket.com/deep-dive-into-lefthook-react-native?utm_source=lefthook)
|
|
254
254
|
|
|
255
255
|
|
|
256
|
-
[documentation]: https://
|
|
257
|
-
[configuration]: https://
|
|
258
|
-
[examples]: https://
|
|
259
|
-
[installation]: https://
|
|
260
|
-
[usage]: https://
|
|
256
|
+
[documentation]: https://lefthook.dev/
|
|
257
|
+
[configuration]: https://lefthook.dev/configuration/index.html
|
|
258
|
+
[examples]: https://lefthook.dev/examples/index.html
|
|
259
|
+
[installation]: https://lefthook.dev/installation/
|
|
260
|
+
[usage]: https://lefthook.dev/usage/index.html
|
|
261
261
|
[discussion]: https://github.com/evilmartians/lefthook/discussions
|
|
262
|
-
[install-apt]: https://
|
|
263
|
-
[install-ruby]: https://
|
|
264
|
-
[install-node]: https://
|
|
265
|
-
[install-brew]: https://
|
|
266
|
-
[install-winget]: https://
|
|
267
|
-
[install-rpm]: https://
|
|
268
|
-
[install-arch]: https://
|
|
269
|
-
[install-alpine]: https://
|
|
270
|
-
[config-parallel]: https://
|
|
271
|
-
[config-files]: https://
|
|
272
|
-
[config-glob]: https://
|
|
273
|
-
[config-run]: https://
|
|
274
|
-
[config-scripts]: https://
|
|
275
|
-
[config-tags]: https://
|
|
276
|
-
[config-skip_output]: https://
|
|
277
|
-
[config-output]: https://
|
|
278
|
-
[usage-local-config]: https://
|
|
262
|
+
[install-apt]: https://lefthook.dev/installation/deb.html
|
|
263
|
+
[install-ruby]: https://lefthook.dev/installation/ruby.html
|
|
264
|
+
[install-node]: https://lefthook.dev/installation/node.html
|
|
265
|
+
[install-brew]: https://lefthook.dev/installation/homebrew.html
|
|
266
|
+
[install-winget]: https://lefthook.dev/installation/winget.html
|
|
267
|
+
[install-rpm]: https://lefthook.dev/installation/rpm.html
|
|
268
|
+
[install-arch]: https://lefthook.dev/installation/arch.html
|
|
269
|
+
[install-alpine]: https://lefthook.dev/installation/alpine.html
|
|
270
|
+
[config-parallel]: https://lefthook.dev/configuration/parallel.html
|
|
271
|
+
[config-files]: https://lefthook.dev/configuration/files.html
|
|
272
|
+
[config-glob]: https://lefthook.dev/configuration/glob.html
|
|
273
|
+
[config-run]: https://lefthook.dev/configuration/run.html
|
|
274
|
+
[config-scripts]: https://lefthook.dev/configuration/Scripts.html
|
|
275
|
+
[config-tags]: https://lefthook.dev/configuration/tags.html
|
|
276
|
+
[config-skip_output]: https://lefthook.dev/configuration/skip_output.html
|
|
277
|
+
[config-output]: https://lefthook.dev/configuration/output.html
|
|
278
|
+
[usage-local-config]: https://lefthook.dev/usage/tips.html#local-config
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@evilmartians/lefthook",
|
|
3
|
-
"version": "1.10.
|
|
3
|
+
"version": "1.10.10",
|
|
4
4
|
"description": "Simple git hooks manager",
|
|
5
5
|
"main": "bin/index.js",
|
|
6
6
|
"files": [
|
|
7
7
|
"postinstall.js",
|
|
8
8
|
"get-exe.js",
|
|
9
|
-
"schema.json"
|
|
9
|
+
"schema.json",
|
|
10
|
+
"bin/**/*"
|
|
10
11
|
],
|
|
11
12
|
"bin": {
|
|
12
13
|
"lefthook": "bin/index.js"
|
package/schema.json
CHANGED
|
@@ -56,7 +56,17 @@
|
|
|
56
56
|
"type": "array"
|
|
57
57
|
},
|
|
58
58
|
"glob": {
|
|
59
|
-
"
|
|
59
|
+
"oneOf": [
|
|
60
|
+
{
|
|
61
|
+
"type": "string"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"type": "array"
|
|
65
|
+
}
|
|
66
|
+
],
|
|
67
|
+
"items": {
|
|
68
|
+
"type": "string"
|
|
69
|
+
}
|
|
60
70
|
},
|
|
61
71
|
"root": {
|
|
62
72
|
"type": "string"
|
|
@@ -214,7 +224,17 @@
|
|
|
214
224
|
"type": "string"
|
|
215
225
|
},
|
|
216
226
|
"glob": {
|
|
217
|
-
"
|
|
227
|
+
"oneOf": [
|
|
228
|
+
{
|
|
229
|
+
"type": "string"
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
"type": "array"
|
|
233
|
+
}
|
|
234
|
+
],
|
|
235
|
+
"items": {
|
|
236
|
+
"type": "string"
|
|
237
|
+
}
|
|
218
238
|
},
|
|
219
239
|
"root": {
|
|
220
240
|
"type": "string"
|
|
@@ -392,7 +412,7 @@
|
|
|
392
412
|
"type": "object"
|
|
393
413
|
}
|
|
394
414
|
},
|
|
395
|
-
"$comment": "Last updated on 2025.01.
|
|
415
|
+
"$comment": "Last updated on 2025.01.21.",
|
|
396
416
|
"properties": {
|
|
397
417
|
"min_version": {
|
|
398
418
|
"type": "string",
|