@storm-software/git-tools 2.5.2 → 2.5.4
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 -7
- package/src/release/nx-release.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
## 2.5.4 (2024-03-28)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### 🩹 Fixes
|
|
5
|
+
|
|
6
|
+
- **git-tools:** Ensure we skip ci on publish commit ([ab2e0655](https://github.com/storm-software/storm-ops/commit/ab2e0655))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### ❤️ Thank You
|
|
10
|
+
|
|
11
|
+
- Patrick Sullivan
|
|
12
|
+
|
|
13
|
+
## 2.5.3 (2024-03-28)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### 🩹 Fixes
|
|
17
|
+
|
|
18
|
+
- **storm-ops:** Resolve issue with workspace dependencies ([041dcc78](https://github.com/storm-software/storm-ops/commit/041dcc78))
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### ❤️ Thank You
|
|
22
|
+
|
|
23
|
+
- Patrick Sullivan
|
|
24
|
+
|
|
1
25
|
## 2.5.2 (2024-03-28)
|
|
2
26
|
|
|
3
27
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/git-tools",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.4",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "⚡ A package containing various git tools used in Storm workspaces.",
|
|
6
6
|
"keywords": [
|
|
@@ -56,16 +56,10 @@
|
|
|
56
56
|
"word-wrap": "1.2.5"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
|
-
"@storm-software/config": "1.7.1",
|
|
60
|
-
"@storm-software/config-tools": "1.33.1",
|
|
61
59
|
"@types/inquirer": "9.0.6",
|
|
62
60
|
"@types/prettier": "3.0.0"
|
|
63
61
|
},
|
|
64
62
|
"publishConfig": {
|
|
65
63
|
"access": "public"
|
|
66
|
-
},
|
|
67
|
-
"peerDependencies": {
|
|
68
|
-
"@storm-software/config": "workspace:^",
|
|
69
|
-
"@storm-software/config-tools": "workspace:^"
|
|
70
64
|
}
|
|
71
65
|
}
|
|
@@ -140,7 +140,7 @@ export const runRelease = async (
|
|
|
140
140
|
to: options.head ?? process.env.NX_HEAD,
|
|
141
141
|
from: options.base ?? process.env.NX_BASE,
|
|
142
142
|
gitCommit: true,
|
|
143
|
-
gitCommitMessage: "chore(release): Publish monorepo release updates"
|
|
143
|
+
gitCommitMessage: "chore(release): Publish monorepo release updates [skip-ci]"
|
|
144
144
|
});
|
|
145
145
|
|
|
146
146
|
// const {
|