@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 +33 -0
- package/README.md +1 -1
- package/config/nx.json +45 -13
- package/package.json +1 -1
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
|
-
[](https://prettier.io/)
|
|
20
20
|
[](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://docusaurus.io/) 
|
|
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": [
|
|
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": [
|
|
58
|
+
"sharedGlobals": [
|
|
59
|
+
"{workspaceRoot}/babel.config.json"
|
|
60
|
+
]
|
|
53
61
|
},
|
|
54
62
|
"targetDefaults": {
|
|
55
63
|
"build": {
|
|
56
64
|
"cache": true,
|
|
57
|
-
"inputs": [
|
|
58
|
-
|
|
59
|
-
|
|
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": [
|
|
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": [
|
|
103
|
+
"inputs": [
|
|
104
|
+
"default",
|
|
105
|
+
"{workspaceRoot}/**/biome.json"
|
|
106
|
+
]
|
|
87
107
|
},
|
|
88
108
|
"test": {
|
|
89
109
|
"cache": true,
|
|
90
|
-
"inputs": [
|
|
110
|
+
"inputs": [
|
|
111
|
+
"default",
|
|
112
|
+
"^production",
|
|
113
|
+
"{workspaceRoot}/jest.preset.js"
|
|
114
|
+
],
|
|
91
115
|
"executor": "@nx/jest:jest",
|
|
92
|
-
"outputs": [
|
|
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": [
|
|
110
|
-
|
|
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