@storm-software/git-tools 1.36.0 → 1.36.2

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 CHANGED
@@ -1,3 +1,17 @@
1
+ ## 1.36.2 (2024-02-09)
2
+
3
+
4
+ ### 🩹 Fixes
5
+
6
+ - **linting-tools:** Ensure we use `build:all` script during linting ([848bd1cf](https://github.com/storm-software/storm-ops/commit/848bd1cf))
7
+
8
+
9
+ ### ❤️ Thank You
10
+
11
+ - Patrick Sullivan
12
+
13
+
14
+
1
15
 
2
16
 
3
17
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/git-tools",
3
- "version": "1.36.0",
3
+ "version": "1.36.2",
4
4
  "private": false,
5
5
  "description": "⚡ A package containing various git tools used in Storm workspaces.",
6
6
  "keywords": [
@@ -33,7 +33,7 @@ pre-commit:
33
33
  run: "npx storm-prepare"
34
34
  prebuild:
35
35
  glob: "**/*.*"
36
- run: "pnpm build"
36
+ run: "pnpm build:all"
37
37
  stage_fixed: true
38
38
  validate:
39
39
  glob: "**/*.*"
@@ -44,17 +44,17 @@ 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: "**/*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}"
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
- run: "pnpm build"
57
+ run: "pnpm build:all"
58
58
  stage_fixed: true
59
59
 
60
60
  commit-msg:
@@ -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 --files-ignore-unknown=true {files} && git update-index"
77
77
  stage_fixed: true
78
78
 
79
79
  post-merge:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/git-tools",
3
- "version": "1.36.0",
3
+ "version": "1.36.2",
4
4
  "private": false,
5
5
  "description": "⚡ A package containing various git tools used in Storm workspaces.",
6
6
  "keywords": [