@storm-software/git-tools 1.36.1 → 1.36.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 +24 -0
- package/changelog-renderer/package.json +1 -1
- package/lefthook/lefthook.yml +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
## 1.36.3 (2024-02-09)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### 🩹 Fixes
|
|
5
|
+
|
|
6
|
+
- **linting-tools:** Added `--no-errors-on-unmatched` to format command ([c7bd849a](https://github.com/storm-software/storm-ops/commit/c7bd849a))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### ❤️ Thank You
|
|
10
|
+
|
|
11
|
+
- Patrick Sullivan
|
|
12
|
+
|
|
13
|
+
## 1.36.2 (2024-02-09)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### 🩹 Fixes
|
|
17
|
+
|
|
18
|
+
- **linting-tools:** Ensure we use `build:all` script during linting ([848bd1cf](https://github.com/storm-software/storm-ops/commit/848bd1cf))
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### ❤️ Thank You
|
|
22
|
+
|
|
23
|
+
- Patrick Sullivan
|
|
24
|
+
|
|
1
25
|
|
|
2
26
|
|
|
3
27
|
|
package/lefthook/lefthook.yml
CHANGED
|
@@ -44,14 +44,14 @@ pre-commit:
|
|
|
44
44
|
glob: "**/*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}"
|
|
45
45
|
run: "pnpm lint && git update-index"
|
|
46
46
|
check:
|
|
47
|
-
glob: "
|
|
47
|
+
glob: "**/*.*"
|
|
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,executors.json,generators.json}"
|
|
51
51
|
run: "npx storm-git readme-gen --templates=\"./docs/readme-templates\" && git update-index"
|
|
52
52
|
format:
|
|
53
53
|
glob: "**/*.*"
|
|
54
|
-
run: "npx biome format --write {staged_files} && git update-index"
|
|
54
|
+
run: "npx biome format --write --no-errors-on-unmatched {staged_files} && git update-index"
|
|
55
55
|
postbuild:
|
|
56
56
|
glob: "**/*.*"
|
|
57
57
|
run: "pnpm build:all"
|
|
@@ -73,7 +73,7 @@ pre-push:
|
|
|
73
73
|
lint:
|
|
74
74
|
files: "git diff --name-only HEAD @{push}"
|
|
75
75
|
glob: "**/*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}"
|
|
76
|
-
run: "npx biome lint --apply --no-errors-on-unmatched --files-ignore-unknown=true {files} && git update-index"
|
|
76
|
+
run: "npx biome lint --apply --no-errors-on-unmatched --vcs-enabled=true --files-ignore-unknown=true {files} && git update-index"
|
|
77
77
|
stage_fixed: true
|
|
78
78
|
|
|
79
79
|
post-merge:
|