@storm-software/git-tools 1.32.4 → 1.32.6
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/package.json +1 -1
- package/project.json +9 -9
- package/src/release/nx-release.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
## 1.32.6 (2024-01-28)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### 🩹 Fixes
|
|
5
|
+
|
|
6
|
+
- **git-tools:** Correct the asset output paths ([7cf40f6d](https://github.com/storm-software/storm-ops/commit/7cf40f6d))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### ❤️ Thank You
|
|
10
|
+
|
|
11
|
+
- Patrick Sullivan
|
|
12
|
+
|
|
13
|
+
## 1.32.5 (2024-01-28)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### 🩹 Fixes
|
|
17
|
+
|
|
18
|
+
- **git-tools:** Reformat display message ([7ec1ff23](https://github.com/storm-software/storm-ops/commit/7ec1ff23))
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### ❤️ Thank You
|
|
22
|
+
|
|
23
|
+
- Patrick Sullivan
|
|
24
|
+
|
|
1
25
|
## 1.32.4 (2024-01-27)
|
|
2
26
|
|
|
3
27
|
|
package/package.json
CHANGED
package/project.json
CHANGED
|
@@ -56,47 +56,47 @@
|
|
|
56
56
|
{
|
|
57
57
|
"input": "packages/git-tools",
|
|
58
58
|
"glob": "README.md",
|
|
59
|
-
"output": "
|
|
59
|
+
"output": "."
|
|
60
60
|
},
|
|
61
61
|
{
|
|
62
62
|
"input": "packages/git-tools",
|
|
63
63
|
"glob": "CHANGELOG.md",
|
|
64
|
-
"output": "
|
|
64
|
+
"output": "."
|
|
65
65
|
},
|
|
66
66
|
{
|
|
67
67
|
"input": "",
|
|
68
68
|
"glob": "LICENSE",
|
|
69
|
-
"output": "
|
|
69
|
+
"output": "."
|
|
70
70
|
},
|
|
71
71
|
{
|
|
72
72
|
"input": "packages/git-tools",
|
|
73
73
|
"glob": "bin/**/{*,*.*}",
|
|
74
|
-
"output": "
|
|
74
|
+
"output": "."
|
|
75
75
|
},
|
|
76
76
|
{
|
|
77
77
|
"input": "packages/git-tools/src",
|
|
78
78
|
"glob": "lint-staged/**/*.cjs",
|
|
79
|
-
"output": "
|
|
79
|
+
"output": "."
|
|
80
80
|
},
|
|
81
81
|
{
|
|
82
82
|
"input": "packages/git-tools/src",
|
|
83
83
|
"glob": "lefthook/lefthook.yml",
|
|
84
|
-
"output": "
|
|
84
|
+
"output": "."
|
|
85
85
|
},
|
|
86
86
|
{
|
|
87
87
|
"input": "packages/git-tools/src",
|
|
88
88
|
"glob": "prettier/.prettierignore_staged",
|
|
89
|
-
"output": "
|
|
89
|
+
"output": "."
|
|
90
90
|
},
|
|
91
91
|
{
|
|
92
92
|
"input": "packages/git-tools/src",
|
|
93
93
|
"glob": "readme/templates/**/*.*",
|
|
94
|
-
"output": "
|
|
94
|
+
"output": "."
|
|
95
95
|
},
|
|
96
96
|
{
|
|
97
97
|
"input": "packages/git-tools/src/commitlint",
|
|
98
98
|
"glob": "commitlint.config.cjs",
|
|
99
|
-
"output": "
|
|
99
|
+
"output": "."
|
|
100
100
|
}
|
|
101
101
|
]
|
|
102
102
|
}
|
|
@@ -56,7 +56,7 @@ export const runRelease = async (
|
|
|
56
56
|
gitCommit: false
|
|
57
57
|
});
|
|
58
58
|
|
|
59
|
-
writeInfo(config, "Generating the release changelog...");
|
|
59
|
+
writeInfo(config, "Generating the release changelog files...");
|
|
60
60
|
|
|
61
61
|
await releaseChangelog({
|
|
62
62
|
version: nxReleaseConfig.projectsRelationship !== "fixed" ? undefined : workspaceVersion,
|