@storm-software/git-tools 2.5.8 → 2.5.9
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 +12 -0
- package/package.json +1 -1
- package/src/cli/index.ts +1 -3
- package/src/release/nx-release.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## 2.5.9 (2024-03-29)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### 🩹 Fixes
|
|
5
|
+
|
|
6
|
+
- **workspace-tools:** Resolve issues applying Nx plugins ([7dd277e6](https://github.com/storm-software/storm-ops/commit/7dd277e6))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### ❤️ Thank You
|
|
10
|
+
|
|
11
|
+
- Patrick Sullivan
|
|
12
|
+
|
|
1
13
|
## 2.5.8 (2024-03-28)
|
|
2
14
|
|
|
3
15
|
|
package/package.json
CHANGED
package/src/cli/index.ts
CHANGED
|
@@ -11,7 +11,7 @@ import { runReadme } from "../readme";
|
|
|
11
11
|
import { runRelease } from "../release";
|
|
12
12
|
import type { ReadMeOptions } from "../types";
|
|
13
13
|
import { Command, Option } from "commander";
|
|
14
|
-
|
|
14
|
+
|
|
15
15
|
let _config: Partial<StormConfig> = {};
|
|
16
16
|
|
|
17
17
|
export function createProgram(config: StormConfig) {
|
|
@@ -19,8 +19,6 @@ export function createProgram(config: StormConfig) {
|
|
|
19
19
|
_config = config;
|
|
20
20
|
writeInfo(config, "⚡ Running Storm Git Tools");
|
|
21
21
|
|
|
22
|
-
registerPluginTSTranspiler();
|
|
23
|
-
|
|
24
22
|
// const commander = await import("commander");
|
|
25
23
|
|
|
26
24
|
const root = findWorkspaceRootSafe(process.cwd());
|
|
@@ -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"
|
|
144
144
|
});
|
|
145
145
|
|
|
146
146
|
// const {
|