@storm-software/git-tools 1.26.0 → 1.26.2
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 +29 -0
- package/lefthook/lefthook.yml +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,32 @@
|
|
|
1
|
+
## [1.26.1](https://github.com/storm-software/storm-ops/compare/git-tools-v1.26.0...git-tools-v1.26.1) (2024-01-19)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **git-tools:** Updated the base lefthook config file ([5fc8e10](https://github.com/storm-software/storm-ops/commit/5fc8e10a0eb176148bf57d45c176f8e6fdf309c6))
|
|
7
|
+
|
|
8
|
+
# [1.26.0](https://github.com/storm-software/storm-ops/compare/git-tools-v1.25.2...git-tools-v1.26.0) (2024-01-19)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **config-tools:** Rerun ci pipeline ([d855670](https://github.com/storm-software/storm-ops/commit/d855670faf558969a592b8b6666754280c0dc829))
|
|
14
|
+
* **config-tools:** Resolved the issue with the tsconfig properties ([5bc729e](https://github.com/storm-software/storm-ops/commit/5bc729e4680f2bb8ce67a2f6a85dff875bef9997))
|
|
15
|
+
* **config-tools:** Skip type checks ([c7da786](https://github.com/storm-software/storm-ops/commit/c7da78609234d5eb0998465c9d38fe10eb02d205))
|
|
16
|
+
* **config-tools:** Update lefthook config to call install prior to push ([6a81b6a](https://github.com/storm-software/storm-ops/commit/6a81b6a27359ab41549cb93227d28c5fc1b2ee01))
|
|
17
|
+
* **git-tools:** Fixed issue with bad validation in pre-push hook ([5eeb926](https://github.com/storm-software/storm-ops/commit/5eeb9260088689d370c1b178b2ffa3bd4b110396))
|
|
18
|
+
* **git-tools:** Resolved issue preventing git-tools publish ([1bf9727](https://github.com/storm-software/storm-ops/commit/1bf97271e3421b5c485708ed2c59da815cde6c4b))
|
|
19
|
+
* **git-tools:** Resolved issues around the new paths used in git-tools ([b2e0074](https://github.com/storm-software/storm-ops/commit/b2e00740de8a1081282a5b090c975ef43d2799c5))
|
|
20
|
+
* **git-tools:** Resolved the issue with the missing release plugin ([15cc054](https://github.com/storm-software/storm-ops/commit/15cc054a1e538f55fe246db79622281f48972193))
|
|
21
|
+
* **git-tools:** Resovled issues with lock file versions ([3740dc2](https://github.com/storm-software/storm-ops/commit/3740dc2392a8c4fcb0beae0816afeaea1573f6ae))
|
|
22
|
+
* **git-tools:** Upgrade Nx version and resolved import issues ([53432f2](https://github.com/storm-software/storm-ops/commit/53432f2b318c24bc0d65cf2509d01861c0c6f91b))
|
|
23
|
+
* **git-tools:** Upgrade pnpm lock file ([daa3d32](https://github.com/storm-software/storm-ops/commit/daa3d32fd692799b036556ccf04279507410e4eb))
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
### Features
|
|
27
|
+
|
|
28
|
+
* **git-tools:** Redesigned the executable script structure ([a4c097b](https://github.com/storm-software/storm-ops/commit/a4c097bd38a68ca0c206686b592d994fb643a5d2))
|
|
29
|
+
|
|
1
30
|
## [1.25.2](https://github.com/storm-software/storm-ops/compare/git-tools-v1.25.1...git-tools-v1.25.2) (2024-01-19)
|
|
2
31
|
|
|
3
32
|
|
package/lefthook/lefthook.yml
CHANGED
|
@@ -48,7 +48,7 @@ pre-commit:
|
|
|
48
48
|
run: npx biome check --apply --no-errors-on-unmatched --files-ignore-unknown=true {staged_files} && git update-index"
|
|
49
49
|
readme-gen:
|
|
50
50
|
glob: "**/{README.md,package.json}"
|
|
51
|
-
run: "npx storm-git readme-gen --templates=\"docs/readme-templates\" && git update-index"
|
|
51
|
+
run: "npx storm-git readme-gen --templates=\"./docs/readme-templates\" && git update-index"
|
|
52
52
|
format:
|
|
53
53
|
glob: "**/*.*"
|
|
54
54
|
run: "npx biome format --write {staged_files} && git update-index"
|
|
@@ -60,7 +60,7 @@ pre-commit:
|
|
|
60
60
|
commit-msg:
|
|
61
61
|
commands:
|
|
62
62
|
validate:
|
|
63
|
-
run: "npx commitlint --config=\"
|
|
63
|
+
run: "npx commitlint --config=\"./node_modules/@storm-software/git-tools/commitlint.config.cjs\" --edit {1}"
|
|
64
64
|
|
|
65
65
|
pre-push:
|
|
66
66
|
piped: true
|