@storm-software/workspace-tools 1.48.6 → 1.49.0

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,36 @@
1
+ ## 1.49.0 (2024-01-21)
2
+
3
+
4
+ ### 🚀 Features
5
+
6
+ - **git-tools:** Added custom storm `ChangelogRenderer` for releases ([922aa263](https://github.com/storm-software/storm-ops/commit/922aa263))
7
+
8
+
9
+ ### 🩹 Fixes
10
+
11
+ - **git-tools:** Update path to changelog renderer ([d4dd7006](https://github.com/storm-software/storm-ops/commit/d4dd7006))
12
+
13
+ - **git-tools:** Added separate changelog-renderer CommonJs build ([4da88acb](https://github.com/storm-software/storm-ops/commit/4da88acb))
14
+
15
+
16
+ ### ❤️ Thank You
17
+
18
+ - Patrick Sullivan
19
+
20
+ ## 1.48.7 (2024-01-21)
21
+
22
+
23
+ ### 🩹 Fixes
24
+
25
+ - **git-tools:** Resolve issues with commit message formatting ([90bdc930](https://github.com/storm-software/storm-ops/commit/90bdc930))
26
+
27
+ - **workspace-tools:** Added default `nx-release-publish` executor config to Nx json ([d3985074](https://github.com/storm-software/storm-ops/commit/d3985074))
28
+
29
+
30
+ ### ❤️ Thank You
31
+
32
+ - Patrick Sullivan
33
+
1
34
  ## 1.48.6 (2024-01-21)
2
35
 
3
36
 
package/README.md CHANGED
@@ -16,7 +16,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
16
16
 
17
17
  <h3 align="center">💻 Visit <a href="https://stormsoftware.org" target="_blank">stormsoftware.org</a> to stay up to date with this developer</h3><br />
18
18
 
19
- [![Version](https://img.shields.io/badge/version-1.48.4-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;
19
+ [![Version](https://img.shields.io/badge/version-1.48.7-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;
20
20
  [![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with docusaurus](https://img.shields.io/badge/documented_with-docusaurus-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://docusaurus.io/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
21
21
 
22
22
  > [!IMPORTANT]
package/config/nx.json CHANGED
@@ -8,7 +8,13 @@
8
8
  "default": {
9
9
  "runner": "nx/tasks-runners/default",
10
10
  "options": {
11
- "cacheableOperations": ["build", "lint", "format", "test", "e2e"],
11
+ "cacheableOperations": [
12
+ "build",
13
+ "lint",
14
+ "format",
15
+ "test",
16
+ "e2e"
17
+ ],
12
18
  "parallel": 4,
13
19
  "cacheDirectory": ".nx/cache"
14
20
  }
@@ -49,14 +55,23 @@
49
55
  "!{projectRoot}/**/*.stories.@(js|jsx|ts|tsx|mdx)",
50
56
  "!{projectRoot}/tsconfig.storybook.json"
51
57
  ],
52
- "sharedGlobals": ["{workspaceRoot}/babel.config.json"]
58
+ "sharedGlobals": [
59
+ "{workspaceRoot}/babel.config.json"
60
+ ]
53
61
  },
54
62
  "targetDefaults": {
55
63
  "build": {
56
64
  "cache": true,
57
- "inputs": ["default", "^production"],
58
- "outputs": ["{options.outputPath}"],
59
- "dependsOn": ["^build"],
65
+ "inputs": [
66
+ "default",
67
+ "^production"
68
+ ],
69
+ "outputs": [
70
+ "{options.outputPath}"
71
+ ],
72
+ "dependsOn": [
73
+ "^build"
74
+ ],
60
75
  "options": {
61
76
  "main": "{projectRoot}/src/index.ts",
62
77
  "outputPath": "dist/{projectRoot}",
@@ -78,18 +93,29 @@
78
93
  "lint": {
79
94
  "cache": true,
80
95
  "executor": "nx:run-commands",
81
- "outputs": ["{options.outputFile}"],
96
+ "outputs": [
97
+ "{options.outputFile}"
98
+ ],
82
99
  "options": {
83
100
  "command": "npx biome lint --apply --no-errors-on-unmatched --files-ignore-unknown=true {projectRoot}",
84
101
  "color": true
85
102
  },
86
- "inputs": ["default", "{workspaceRoot}/**/biome.json"]
103
+ "inputs": [
104
+ "default",
105
+ "{workspaceRoot}/**/biome.json"
106
+ ]
87
107
  },
88
108
  "test": {
89
109
  "cache": true,
90
- "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"],
110
+ "inputs": [
111
+ "default",
112
+ "^production",
113
+ "{workspaceRoot}/jest.preset.js"
114
+ ],
91
115
  "executor": "@nx/jest:jest",
92
- "outputs": ["{workspaceRoot}/coverage/{projectRoot}"],
116
+ "outputs": [
117
+ "{workspaceRoot}/coverage/{projectRoot}"
118
+ ],
93
119
  "options": {
94
120
  "jestConfig": "{projectRoot}/jest.config.ts",
95
121
  "passWithNoTests": true
@@ -106,8 +132,13 @@
106
132
  },
107
133
  "nx-release-publish": {
108
134
  "cache": false,
109
- "inputs": ["default", "^production"],
110
- "dependsOn": ["^build"],
135
+ "inputs": [
136
+ "default",
137
+ "^production"
138
+ ],
139
+ "dependsOn": [
140
+ "^build"
141
+ ],
111
142
  "executor": "@nx/js:release-publish",
112
143
  "options": {
113
144
  "packageRoot": "dist/{projectRoot}",
@@ -122,7 +153,8 @@
122
153
  "workspaceChangelog": false,
123
154
  "projectChangelogs": {
124
155
  "createRelease": "github",
125
- "entryWhenNoChanges": false
156
+ "entryWhenNoChanges": false,
157
+ "renderer": "@storm-software/git-tools/changelog-renderer/index.cjs"
126
158
  }
127
159
  },
128
160
  "version": {
@@ -142,4 +174,4 @@
142
174
  "analyzeSourceFiles": false
143
175
  }
144
176
  }
145
- }
177
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/workspace-tools",
3
- "version": "1.48.6",
3
+ "version": "1.49.0",
4
4
  "private": false,
5
5
  "description": "⚡ A Nx plugin package that contains various executors and generators used in a Storm workspaces.",
6
6
  "keywords": [