@storm-software/git-tools 2.131.107 → 2.131.109

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 CHANGED
@@ -27,7 +27,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
27
27
 
28
28
  <h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
29
29
 
30
- [![Version](https://img.shields.io/badge/version-2.131.105-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
30
+ [![Version](https://img.shields.io/badge/version-2.131.107-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
31
31
 
32
32
  <!-- prettier-ignore-start -->
33
33
  <!-- markdownlint-disable -->
@@ -0,0 +1,61 @@
1
+ # #
2
+ # Lefthook configuration file: #
3
+ # This file is used to configure Lefthook, a tool for managing Git hooks. #
4
+ # #
5
+ # https://github.com/evilmartians/lefthook/blob/master/docs/configuration.md #
6
+
7
+ $schema: https://raw.githubusercontent.com/evilmartians/lefthook/refs/heads/master/schema.json
8
+
9
+ pre-commit:
10
+ parallel: true
11
+ commands:
12
+ prepare:
13
+ glob: "**/*"
14
+ run: bunx storm-git prepare
15
+ stage_fixed: true
16
+ pre-commit:
17
+ glob: "**/*"
18
+ run: bunx storm-git pre-commit --files {staged_files}
19
+ stage_fixed: true
20
+ codeowners:
21
+ glob: "**/CODEOWNERS"
22
+ run: bunx storm-lint codeowners
23
+ stage_fixed: true
24
+ storm-lint:
25
+ glob: "**/*"
26
+ run: bun run lint --files {staged_files}
27
+ stage_fixed: true
28
+
29
+ commit-msg:
30
+ commands:
31
+ validate:
32
+ run: bunx storm-git commitlint --message {1}
33
+
34
+ pre-push:
35
+ parallel: true
36
+ commands:
37
+ build:
38
+ glob: "**/*"
39
+ run: bun run build-dev
40
+ stage_fixed: true
41
+ pre-push:
42
+ files: git diff --name-only HEAD @{push}
43
+ glob: "**/*"
44
+ run: bunx storm-git pre-push --files {files}
45
+ stage_fixed: true
46
+
47
+ post-merge:
48
+ commands:
49
+ validate:
50
+ files: git diff --name-only HEAD @{push}
51
+ glob: "**/*"
52
+ run: bunx storm-git post-merge --files {files}
53
+ stage_fixed: true
54
+
55
+ post-commit:
56
+ commands:
57
+ validate:
58
+ files: git diff --name-only HEAD @{push}
59
+ glob: "**/*"
60
+ run: bunx storm-git post-commit --files {files}
61
+ stage_fixed: true
@@ -0,0 +1,20 @@
1
+ # #
2
+ # Lefthook configuration file: #
3
+ # This file is used to configure Lefthook, a tool for managing Git hooks. #
4
+ # #
5
+ # https://github.com/evilmartians/lefthook/blob/master/docs/configuration.md #
6
+
7
+ $schema: https://raw.githubusercontent.com/evilmartians/lefthook/refs/heads/master/schema.json
8
+ extends:
9
+ - ./minimal.yml
10
+
11
+ pre-commit:
12
+ commands:
13
+ zizmor:
14
+ glob: .github/workflows/*.{yml,yaml}
15
+ run: "zizmor --offline --config='./tools/config/zizmor.yml' .github/workflows/"
16
+ stage_fixed: true
17
+ readme:
18
+ glob: "**/{README.md,README.*.md,readme/**/*,package.json,executors.json,generators.json}"
19
+ run: bunx storm-git readme --templates="tools/readme-templates" --workspace
20
+ stage_fixed: true
@@ -0,0 +1,23 @@
1
+ # #
2
+ # Lefthook configuration file: #
3
+ # This file is used to configure Lefthook, a tool for managing Git hooks. #
4
+ # #
5
+ # https://github.com/evilmartians/lefthook/blob/master/docs/configuration.md #
6
+
7
+ $schema: https://raw.githubusercontent.com/evilmartians/lefthook/refs/heads/master/schema.json
8
+ extends:
9
+ - ./recommended.yml
10
+
11
+ # pre-commit:
12
+ # commands:
13
+ # treefmt:
14
+ # glob: "**/*"
15
+ # run: treefmt {staged_files}
16
+ # stage_fixed: true
17
+
18
+ pre-push:
19
+ commands:
20
+ sherif:
21
+ files: git diff --name-only HEAD @{push}
22
+ glob: "**/*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}"
23
+ run: bunx sherif -i typescript react react-dom --files {files} --cache
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/git-tools",
3
- "version": "2.131.107",
3
+ "version": "2.131.109",
4
4
  "private": false,
5
5
  "description": "Tools for managing Git repositories within a Nx workspace.",
6
6
  "keywords": [
@@ -147,7 +147,8 @@
147
147
  "default": "./dist/changelog-renderer/changelog-renderer.js"
148
148
  }
149
149
  },
150
- "./lefthook/*.yml": "./dist/lefthook/*.yml",
150
+ "./lefthook/bun/*.yml": "./dist/lefthook/bun/*.yml",
151
+ "./lefthook/pnpm/*.yml": "./dist/lefthook/pnpm/*.yml",
151
152
  "./lint-staged/*": "./dist/lint-staged/*",
152
153
  "./readme/templates/*": "./dist/readme/templates/*"
153
154
  },
@@ -190,8 +191,8 @@
190
191
  "@inquirer/prompts": "^8.5.2",
191
192
  "@nx/devkit": "23.0.1",
192
193
  "@nx/js": "23.0.1",
193
- "@storm-software/config": "^1.138.36",
194
- "@storm-software/config-tools": "^1.190.99",
194
+ "@storm-software/config": "^1.138.38",
195
+ "@storm-software/config-tools": "^1.190.101",
195
196
  "@textlint/ast-node-types": "14.4.2",
196
197
  "@textlint/markdown-to-ast": "14.4.2",
197
198
  "anchor-markdown-header": "0.7.0",
@@ -199,7 +200,7 @@
199
200
  "axios": "1.8.2",
200
201
  "chalk": "^4.1.2",
201
202
  "conventional-changelog-conventionalcommits": "^9.3.1",
202
- "conventional-changelog-storm-software": "^0.3.260",
203
+ "conventional-changelog-storm-software": "^0.3.262",
203
204
  "htmlparser2": "10.0.0",
204
205
  "jsonc-parser": "3.2.1",
205
206
  "nanoclone": "^1.0.2",
@@ -216,7 +217,7 @@
216
217
  "zod": "^4.4.3"
217
218
  },
218
219
  "devDependencies": {
219
- "@storm-software/package-constants": "^0.1.112",
220
+ "@storm-software/package-constants": "^0.1.114",
220
221
  "@types/node": "^25.9.5",
221
222
  "commander": "^12.1.0",
222
223
  "conventional-commits-parser": "^6.4.0",
@@ -225,5 +226,5 @@
225
226
  },
226
227
  "peerDependencies": { "zod": ">=4.0.0" },
227
228
  "publishConfig": { "access": "public" },
228
- "gitHead": "f367412ee4e991808dbb5353fd9938daa04efd5e"
229
+ "gitHead": "7735deb945f520b42918d9cae9f8b5023c540a3e"
229
230
  }