@storm-software/git-tools 1.18.1 → 1.18.3
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 +14 -0
- package/bin/pre-commit.cjs +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [1.18.2](https://github.com/storm-software/storm-ops/compare/git-tools-v1.18.1...git-tools-v1.18.2) (2023-12-24)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **git-tools:** Ensure lint stange is not ran concurrently ([3fab5d6](https://github.com/storm-software/storm-ops/commit/3fab5d65ae00b6db3d0441913d35432448e498ce))
|
|
7
|
+
|
|
8
|
+
## [1.18.1](https://github.com/storm-software/storm-ops/compare/git-tools-v1.18.0...git-tools-v1.18.1) (2023-12-23)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **git-tools:** Updated command execution in git hooks ([5ec4f55](https://github.com/storm-software/storm-ops/commit/5ec4f556b58025b1d3880c8696a1e065e4fe0d57))
|
|
14
|
+
|
|
1
15
|
# [1.18.0](https://github.com/storm-software/storm-ops/compare/git-tools-v1.17.4...git-tools-v1.18.0) (2023-12-21)
|
|
2
16
|
|
|
3
17
|
|
package/bin/pre-commit.cjs
CHANGED
|
@@ -20,7 +20,7 @@ try {
|
|
|
20
20
|
});
|
|
21
21
|
|
|
22
22
|
execSync(
|
|
23
|
-
'pnpm lint-staged --config="@storm-software/git-tools/lint-staged/config.cjs"',
|
|
23
|
+
'pnpm lint-staged --concurrent false --config="@storm-software/git-tools/lint-staged/config.cjs"',
|
|
24
24
|
{ encoding: "utf8", env: { ...process.env }, windowsHide: true }
|
|
25
25
|
);
|
|
26
26
|
execSync("pnpm test", {
|