@storm-software/git-tools 1.29.5 → 1.29.7
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/CHANGELOG.md +24 -0
- package/changelog-renderer/package.json +1 -1
- package/lefthook/lefthook.yml +4 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
## 1.29.7 (2024-01-23)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### 🩹 Fixes
|
|
5
|
+
|
|
6
|
+
- **git-tools:** Remove the install hook from pre-commit ([75104c7e](https://github.com/storm-software/storm-ops/commit/75104c7e))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### ❤️ Thank You
|
|
10
|
+
|
|
11
|
+
- Patrick Sullivan
|
|
12
|
+
|
|
13
|
+
## 1.29.6 (2024-01-23)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### 🩹 Fixes
|
|
17
|
+
|
|
18
|
+
- **git-tools:** Update the lefthook configuration to correctly handle install ([e27fd423](https://github.com/storm-software/storm-ops/commit/e27fd423))
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### ❤️ Thank You
|
|
22
|
+
|
|
23
|
+
- Patrick Sullivan
|
|
24
|
+
|
|
1
25
|
|
|
2
26
|
|
|
3
27
|
|
package/lefthook/lefthook.yml
CHANGED
|
@@ -23,10 +23,10 @@ prepare:
|
|
|
23
23
|
pre-commit:
|
|
24
24
|
piped: true
|
|
25
25
|
commands:
|
|
26
|
-
install:
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
26
|
+
# install:
|
|
27
|
+
# files: "git diff --name-only HEAD @{push}"
|
|
28
|
+
# glob: "**/package.json"
|
|
29
|
+
# run: "pnpm install && git update-index"
|
|
30
30
|
prepare:
|
|
31
31
|
files: "git diff --name-only HEAD @{push}"
|
|
32
32
|
glob: "**/{lefthook.yml,biome.json}"
|