@storm-software/git-tools 2.130.18 → 2.130.20
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/bin/git.cjs +9 -9
- package/bin/git.cjs.map +1 -1
- package/bin/git.js +21 -21
- package/bin/git.js.map +1 -1
- package/dist/lefthook/recommended.yml +11 -11
- package/dist/lefthook/strict.yml +6 -5
- package/package.json +7 -7
|
@@ -45,24 +45,24 @@ pre-commit:
|
|
|
45
45
|
run: pnpm exec storm-lint all --skip-cspell --skip-circular-deps
|
|
46
46
|
stage_fixed: true
|
|
47
47
|
readme:
|
|
48
|
-
glob: "**/{README.md,README.*.md,readme/**/*,package.json,executors.json,
|
|
49
|
-
|
|
48
|
+
glob: "**/{README.md,README.*.md,readme/**/*,package.json,executors.json,genera\
|
|
49
|
+
tors.json}"
|
|
50
|
+
run: pnpm exec storm-git readme --templates="tools/readme-templates" --workspace
|
|
50
51
|
stage_fixed: true
|
|
51
52
|
prettier:
|
|
52
53
|
glob: "**/*"
|
|
53
|
-
run: pnpm exec prettier --write --ignore-unknown --no-error-on-unmatched-pattern
|
|
54
|
+
run: pnpm exec prettier --write --ignore-unknown --no-error-on-unmatched-pattern
|
|
55
|
+
--config="node_modules/@storm-software/prettier/exclude-packagejson.json"
|
|
56
|
+
--ignore-path="node_modules/@storm-software/prettier/.prettierignore-exclude-packagejson"
|
|
57
|
+
--cache --cache-location="node_modules/.cache/prettier/workspace.cache"
|
|
58
|
+
{staged_files}
|
|
54
59
|
stage_fixed: true
|
|
55
60
|
treefmt:
|
|
56
61
|
glob: "**/*"
|
|
57
|
-
run: treefmt {staged_files}
|
|
62
|
+
run: treefmt {staged_files}
|
|
58
63
|
stage_fixed: true
|
|
59
64
|
lint:
|
|
60
65
|
glob: "**/*"
|
|
61
|
-
run: pnpm nx affected --target=lint --files="{staged_files}" --exclude=monorepo
|
|
66
|
+
run: pnpm nx affected --target=lint --files="{staged_files}" --exclude=monorepo
|
|
67
|
+
--outputStyle=dynamic-legacy --parallel=3
|
|
62
68
|
stage_fixed: true
|
|
63
|
-
|
|
64
|
-
# ls-lint:
|
|
65
|
-
# files: git diff --name-only HEAD @{push}
|
|
66
|
-
# glob: "**/*.{ts,js,d.ts,rs}"
|
|
67
|
-
# run: ls-lint --config node_modules/@storm-software/linting-tools/ls-lint/config.yml {files} && git update-index
|
|
68
|
-
# stage_fixed: true
|
package/dist/lefthook/strict.yml
CHANGED
|
@@ -42,7 +42,7 @@ pre-commit:
|
|
|
42
42
|
- "*.svg"
|
|
43
43
|
- "*.env"
|
|
44
44
|
- ".env.{local,development,test,production,staging}"
|
|
45
|
-
run: pnpm lint {staged_files}
|
|
45
|
+
run: pnpm lint --files {staged_files}
|
|
46
46
|
stage_fixed: true
|
|
47
47
|
eslint:
|
|
48
48
|
glob:
|
|
@@ -72,7 +72,9 @@ pre-commit:
|
|
|
72
72
|
- "*.svg"
|
|
73
73
|
- "*.env"
|
|
74
74
|
- ".env.{local,development,test,production,staging}"
|
|
75
|
-
run:
|
|
75
|
+
run: "pnpm exec eslint --fix --color --no-warn-ignored --cache --cache-location
|
|
76
|
+
\"./node_modules/.cache/storm/eslint-cache\" --config
|
|
77
|
+
\"./eslint.config.mjs\" {staged_files}"
|
|
76
78
|
stage_fixed: true
|
|
77
79
|
|
|
78
80
|
pre-push:
|
|
@@ -80,10 +82,9 @@ pre-push:
|
|
|
80
82
|
prettier:
|
|
81
83
|
files: git diff --name-only HEAD @{push}
|
|
82
84
|
glob: "!**/generators/*/files/**/*"
|
|
83
|
-
run: "pnpm exec prettier {files} --check --ignore-unknown
|
|
84
|
-
|
|
85
|
+
run: "pnpm exec prettier {files} --check --ignore-unknown
|
|
86
|
+
--no-error-on-unmatched-pattern --cache && git update-index"
|
|
85
87
|
sherif:
|
|
86
88
|
files: git diff --name-only HEAD @{push}
|
|
87
89
|
glob: "**/*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}"
|
|
88
90
|
run: pnpm exec sherif -i typescript react react-dom --files {files} --cache
|
|
89
|
-
stage_fixed: true
|
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.20",
|
|
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.16",
|
|
194
|
+
"@storm-software/config-tools": "^1.189.62",
|
|
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",
|
|
@@ -199,8 +199,8 @@
|
|
|
199
199
|
"axios": "1.8.2",
|
|
200
200
|
"chalk": "^4.1.2",
|
|
201
201
|
"chalk-template": "1.1.0",
|
|
202
|
-
"conventional-changelog-conventionalcommits": "^9.3.
|
|
203
|
-
"conventional-changelog-storm-software": "^0.3.
|
|
202
|
+
"conventional-changelog-conventionalcommits": "^9.3.1",
|
|
203
|
+
"conventional-changelog-storm-software": "^0.3.143",
|
|
204
204
|
"htmlparser2": "10.0.0",
|
|
205
205
|
"jsonc-parser": "3.2.1",
|
|
206
206
|
"nx": "22.6.0",
|
|
@@ -215,7 +215,7 @@
|
|
|
215
215
|
"devDependencies": {
|
|
216
216
|
"@types/node": "^25.5.0",
|
|
217
217
|
"commander": "^12.1.0",
|
|
218
|
-
"conventional-commits-parser": "^6.
|
|
218
|
+
"conventional-commits-parser": "^6.4.0",
|
|
219
219
|
"defu": "6.1.4",
|
|
220
220
|
"semver": "7.6.2",
|
|
221
221
|
"simple-git": "^3.33.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": "c9e22f77a54addf393da062dd661a01624fea3b1"
|
|
229
229
|
}
|