@storm-software/git-tools 2.130.11 → 2.130.13
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 +1 -1
- package/dist/lefthook/minimal.yml +5 -9
- package/dist/lefthook/recommended.yml +4 -13
- package/dist/lefthook/strict.yml +3 -6
- package/package.json +5 -5
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
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
31
31
|
|
|
32
32
|
<!-- prettier-ignore-start -->
|
|
33
33
|
<!-- markdownlint-disable -->
|
|
@@ -6,30 +6,25 @@
|
|
|
6
6
|
|
|
7
7
|
$schema: https://raw.githubusercontent.com/evilmartians/lefthook/refs/heads/master/schema.json
|
|
8
8
|
assert_lefthook_installed: true
|
|
9
|
-
colors: true
|
|
10
9
|
no_tty: false
|
|
10
|
+
no_auto_install: false
|
|
11
11
|
min_version: "1.5.0"
|
|
12
12
|
|
|
13
13
|
pre-commit:
|
|
14
|
+
parallel: true
|
|
14
15
|
commands:
|
|
15
|
-
install:
|
|
16
|
-
glob: "{pnpm-lock.yaml,lefthook.yml,lefthook.yaml,lefthook.json}"
|
|
17
|
-
run: pnpm install && pnpm lefthook install && git update-index
|
|
18
|
-
stage_fixed: true
|
|
19
16
|
prepare:
|
|
20
|
-
files: git diff --name-only HEAD @{push}
|
|
21
17
|
glob: "**/*"
|
|
22
18
|
run: pnpm exec storm-git prepare
|
|
23
19
|
stage_fixed: true
|
|
24
20
|
pre-commit:
|
|
25
|
-
files: git diff --name-only HEAD @{push}
|
|
26
21
|
glob: "**/*"
|
|
27
|
-
run: pnpm exec storm-git pre-commit --files {
|
|
22
|
+
run: pnpm exec storm-git pre-commit --files {staged_files}
|
|
28
23
|
stage_fixed: true
|
|
29
24
|
codeowners:
|
|
30
|
-
files: git diff --name-only HEAD @{push}
|
|
31
25
|
glob: "**/CODEOWNERS"
|
|
32
26
|
run: pnpm exec storm-lint codeowners
|
|
27
|
+
stage_fixed: true
|
|
33
28
|
zizmor:
|
|
34
29
|
glob: .github/workflows/*.{yml,yaml}
|
|
35
30
|
run: "zizmor --offline --config='./tools/config/zizmor.yml' .github/workflows/"
|
|
@@ -41,6 +36,7 @@ commit-msg:
|
|
|
41
36
|
run: pnpm exec storm-git commitlint --message {1}
|
|
42
37
|
|
|
43
38
|
pre-push:
|
|
39
|
+
parallel: true
|
|
44
40
|
commands:
|
|
45
41
|
build:
|
|
46
42
|
glob: "**/*"
|
|
@@ -6,20 +6,15 @@
|
|
|
6
6
|
|
|
7
7
|
$schema: https://raw.githubusercontent.com/evilmartians/lefthook/refs/heads/master/schema.json
|
|
8
8
|
assert_lefthook_installed: true
|
|
9
|
-
colors: true
|
|
10
9
|
no_tty: false
|
|
10
|
+
no_auto_install: false
|
|
11
11
|
min_version: "1.5.0"
|
|
12
12
|
extends:
|
|
13
13
|
- ./minimal.yml
|
|
14
14
|
|
|
15
15
|
pre-commit:
|
|
16
16
|
commands:
|
|
17
|
-
install:
|
|
18
|
-
glob: "{pnpm-lock.yaml,lefthook.yml,lefthook.yaml,lefthook.json}"
|
|
19
|
-
run: pnpm install && pnpm lefthook install && git update-index
|
|
20
|
-
stage_fixed: true
|
|
21
17
|
storm-lint:
|
|
22
|
-
files: git diff --name-only HEAD @{push}
|
|
23
18
|
glob:
|
|
24
19
|
- "*.js"
|
|
25
20
|
- "*.ts"
|
|
@@ -50,24 +45,20 @@ pre-commit:
|
|
|
50
45
|
run: pnpm exec storm-lint all --skip-cspell --skip-circular-deps
|
|
51
46
|
stage_fixed: true
|
|
52
47
|
readme:
|
|
53
|
-
files: git diff --name-only HEAD @{push}
|
|
54
48
|
glob: "**/{README.md,README.*.md,readme/**/*,package.json,executors.json,generators.json}"
|
|
55
49
|
run: pnpm exec storm-git readme --templates="tools/readme-templates" && git update-index
|
|
56
50
|
stage_fixed: true
|
|
57
51
|
prettier:
|
|
58
|
-
files: git diff --name-only HEAD @{push}
|
|
59
52
|
glob: "**/*"
|
|
60
|
-
run: pnpm exec prettier --write --ignore-unknown --no-error-on-unmatched-pattern --config="node_modules/@storm-software/prettier/exclude-packagejson.json" --ignore-path="node_modules/@storm-software/prettier/.prettierignore-exclude-packagejson" --cache --cache-location="node_modules/.cache/prettier/workspace.cache" {
|
|
53
|
+
run: pnpm exec prettier --write --ignore-unknown --no-error-on-unmatched-pattern --config="node_modules/@storm-software/prettier/exclude-packagejson.json" --ignore-path="node_modules/@storm-software/prettier/.prettierignore-exclude-packagejson" --cache --cache-location="node_modules/.cache/prettier/workspace.cache" {staged_files} && git update-index
|
|
61
54
|
stage_fixed: true
|
|
62
55
|
treefmt:
|
|
63
|
-
files: git diff --name-only HEAD @{push}
|
|
64
56
|
glob: "**/*"
|
|
65
|
-
run: treefmt {
|
|
57
|
+
run: treefmt {staged_files} && git update-index
|
|
66
58
|
stage_fixed: true
|
|
67
59
|
lint:
|
|
68
|
-
files: git diff --name-only HEAD @{push}
|
|
69
60
|
glob: "**/*"
|
|
70
|
-
run: pnpm nx affected --target=lint --files={
|
|
61
|
+
run: pnpm nx affected --target=lint --files="{staged_files}" --exclude=monorepo --outputStyle=dynamic-legacy --parallel=3 && git update-index
|
|
71
62
|
stage_fixed: true
|
|
72
63
|
|
|
73
64
|
# ls-lint:
|
package/dist/lefthook/strict.yml
CHANGED
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
|
|
7
7
|
$schema: https://raw.githubusercontent.com/evilmartians/lefthook/refs/heads/master/schema.json
|
|
8
8
|
assert_lefthook_installed: true
|
|
9
|
-
colors: true
|
|
10
9
|
no_tty: false
|
|
10
|
+
no_auto_install: false
|
|
11
11
|
min_version: "1.5.0"
|
|
12
12
|
extends:
|
|
13
13
|
- ./recommended.yml
|
|
@@ -15,7 +15,6 @@ extends:
|
|
|
15
15
|
pre-commit:
|
|
16
16
|
commands:
|
|
17
17
|
lint:
|
|
18
|
-
files: git diff --name-only HEAD @{push}
|
|
19
18
|
glob:
|
|
20
19
|
- "*.js"
|
|
21
20
|
- "*.ts"
|
|
@@ -43,10 +42,9 @@ pre-commit:
|
|
|
43
42
|
- "*.svg"
|
|
44
43
|
- "*.env"
|
|
45
44
|
- ".env.{local,development,test,production,staging}"
|
|
46
|
-
run: pnpm lint {
|
|
45
|
+
run: pnpm lint {staged_files}
|
|
47
46
|
stage_fixed: true
|
|
48
47
|
eslint:
|
|
49
|
-
files: git diff --name-only HEAD @{push}
|
|
50
48
|
glob:
|
|
51
49
|
- "*.js"
|
|
52
50
|
- "*.ts"
|
|
@@ -74,11 +72,10 @@ pre-commit:
|
|
|
74
72
|
- "*.svg"
|
|
75
73
|
- "*.env"
|
|
76
74
|
- ".env.{local,development,test,production,staging}"
|
|
77
|
-
run: 'pnpm exec eslint --fix --color --no-warn-ignored --cache --cache-location "./node_modules/.cache/storm/eslint-cache" --config "./eslint.config.mjs" {
|
|
75
|
+
run: 'pnpm exec eslint --fix --color --no-warn-ignored --cache --cache-location "./node_modules/.cache/storm/eslint-cache" --config "./eslint.config.mjs" {staged_files} && git update-index'
|
|
78
76
|
stage_fixed: true
|
|
79
77
|
|
|
80
78
|
pre-push:
|
|
81
|
-
piped: true
|
|
82
79
|
commands:
|
|
83
80
|
prettier:
|
|
84
81
|
files: git diff --name-only HEAD @{push}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/git-tools",
|
|
3
|
-
"version": "2.130.
|
|
3
|
+
"version": "2.130.13",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Tools for managing Git repositories within a Nx workspace.",
|
|
6
6
|
"keywords": [
|
|
@@ -190,8 +190,8 @@
|
|
|
190
190
|
"@inquirer/prompts": "^8.3.2",
|
|
191
191
|
"@nx/devkit": "22.6.0",
|
|
192
192
|
"@nx/js": "22.6.0",
|
|
193
|
-
"@storm-software/config": "^1.137.
|
|
194
|
-
"@storm-software/config-tools": "^1.189.
|
|
193
|
+
"@storm-software/config": "^1.137.9",
|
|
194
|
+
"@storm-software/config-tools": "^1.189.55",
|
|
195
195
|
"@textlint/ast-node-types": "14.4.2",
|
|
196
196
|
"@textlint/markdown-to-ast": "14.4.2",
|
|
197
197
|
"anchor-markdown-header": "0.7.0",
|
|
@@ -200,7 +200,7 @@
|
|
|
200
200
|
"chalk": "^4.1.2",
|
|
201
201
|
"chalk-template": "1.1.0",
|
|
202
202
|
"conventional-changelog-conventionalcommits": "^9.3.0",
|
|
203
|
-
"conventional-changelog-storm-software": "^0.3.
|
|
203
|
+
"conventional-changelog-storm-software": "^0.3.136",
|
|
204
204
|
"htmlparser2": "10.0.0",
|
|
205
205
|
"jsonc-parser": "3.2.1",
|
|
206
206
|
"nx": "22.6.0",
|
|
@@ -225,5 +225,5 @@
|
|
|
225
225
|
"packageManager": "pnpm@10.3.0",
|
|
226
226
|
"engines": { "node": ">=22.4.0", "pnpm": ">=10.3.0" },
|
|
227
227
|
"publishConfig": { "access": "public" },
|
|
228
|
-
"gitHead": "
|
|
228
|
+
"gitHead": "8c87842c3b63bcb1686e3c045b83b57a0f8b3311"
|
|
229
229
|
}
|