@storm-software/workspace-tools 1.49.0 → 1.49.2
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/config/nx.json +14 -45
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
## 1.49.2 (2024-01-21)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### 🩹 Fixes
|
|
5
|
+
|
|
6
|
+
- **workspace-tools:** Temporary removal of the custom changelog renderer ([882d49c1](https://github.com/storm-software/storm-ops/commit/882d49c1))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### ❤️ Thank You
|
|
10
|
+
|
|
11
|
+
- Patrick Sullivan
|
|
12
|
+
|
|
13
|
+
## 1.49.1 (2024-01-21)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### 🩹 Fixes
|
|
17
|
+
|
|
18
|
+
- **workspace-tools:** Added custom `releaseTagPattern` to default Nx configuration ([9380b38f](https://github.com/storm-software/storm-ops/commit/9380b38f))
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### ❤️ Thank You
|
|
22
|
+
|
|
23
|
+
- Patrick Sullivan
|
|
24
|
+
|
|
1
25
|
## 1.49.0 (2024-01-21)
|
|
2
26
|
|
|
3
27
|
|
package/config/nx.json
CHANGED
|
@@ -8,13 +8,7 @@
|
|
|
8
8
|
"default": {
|
|
9
9
|
"runner": "nx/tasks-runners/default",
|
|
10
10
|
"options": {
|
|
11
|
-
"cacheableOperations": [
|
|
12
|
-
"build",
|
|
13
|
-
"lint",
|
|
14
|
-
"format",
|
|
15
|
-
"test",
|
|
16
|
-
"e2e"
|
|
17
|
-
],
|
|
11
|
+
"cacheableOperations": ["build", "lint", "format", "test", "e2e"],
|
|
18
12
|
"parallel": 4,
|
|
19
13
|
"cacheDirectory": ".nx/cache"
|
|
20
14
|
}
|
|
@@ -55,23 +49,14 @@
|
|
|
55
49
|
"!{projectRoot}/**/*.stories.@(js|jsx|ts|tsx|mdx)",
|
|
56
50
|
"!{projectRoot}/tsconfig.storybook.json"
|
|
57
51
|
],
|
|
58
|
-
"sharedGlobals": [
|
|
59
|
-
"{workspaceRoot}/babel.config.json"
|
|
60
|
-
]
|
|
52
|
+
"sharedGlobals": ["{workspaceRoot}/babel.config.json"]
|
|
61
53
|
},
|
|
62
54
|
"targetDefaults": {
|
|
63
55
|
"build": {
|
|
64
56
|
"cache": true,
|
|
65
|
-
"inputs": [
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
],
|
|
69
|
-
"outputs": [
|
|
70
|
-
"{options.outputPath}"
|
|
71
|
-
],
|
|
72
|
-
"dependsOn": [
|
|
73
|
-
"^build"
|
|
74
|
-
],
|
|
57
|
+
"inputs": ["default", "^production"],
|
|
58
|
+
"outputs": ["{options.outputPath}"],
|
|
59
|
+
"dependsOn": ["^build"],
|
|
75
60
|
"options": {
|
|
76
61
|
"main": "{projectRoot}/src/index.ts",
|
|
77
62
|
"outputPath": "dist/{projectRoot}",
|
|
@@ -93,29 +78,18 @@
|
|
|
93
78
|
"lint": {
|
|
94
79
|
"cache": true,
|
|
95
80
|
"executor": "nx:run-commands",
|
|
96
|
-
"outputs": [
|
|
97
|
-
"{options.outputFile}"
|
|
98
|
-
],
|
|
81
|
+
"outputs": ["{options.outputFile}"],
|
|
99
82
|
"options": {
|
|
100
83
|
"command": "npx biome lint --apply --no-errors-on-unmatched --files-ignore-unknown=true {projectRoot}",
|
|
101
84
|
"color": true
|
|
102
85
|
},
|
|
103
|
-
"inputs": [
|
|
104
|
-
"default",
|
|
105
|
-
"{workspaceRoot}/**/biome.json"
|
|
106
|
-
]
|
|
86
|
+
"inputs": ["default", "{workspaceRoot}/**/biome.json"]
|
|
107
87
|
},
|
|
108
88
|
"test": {
|
|
109
89
|
"cache": true,
|
|
110
|
-
"inputs": [
|
|
111
|
-
"default",
|
|
112
|
-
"^production",
|
|
113
|
-
"{workspaceRoot}/jest.preset.js"
|
|
114
|
-
],
|
|
90
|
+
"inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"],
|
|
115
91
|
"executor": "@nx/jest:jest",
|
|
116
|
-
"outputs": [
|
|
117
|
-
"{workspaceRoot}/coverage/{projectRoot}"
|
|
118
|
-
],
|
|
92
|
+
"outputs": ["{workspaceRoot}/coverage/{projectRoot}"],
|
|
119
93
|
"options": {
|
|
120
94
|
"jestConfig": "{projectRoot}/jest.config.ts",
|
|
121
95
|
"passWithNoTests": true
|
|
@@ -132,13 +106,8 @@
|
|
|
132
106
|
},
|
|
133
107
|
"nx-release-publish": {
|
|
134
108
|
"cache": false,
|
|
135
|
-
"inputs": [
|
|
136
|
-
|
|
137
|
-
"^production"
|
|
138
|
-
],
|
|
139
|
-
"dependsOn": [
|
|
140
|
-
"^build"
|
|
141
|
-
],
|
|
109
|
+
"inputs": ["default", "^production"],
|
|
110
|
+
"dependsOn": ["^build"],
|
|
142
111
|
"executor": "@nx/js:release-publish",
|
|
143
112
|
"options": {
|
|
144
113
|
"packageRoot": "dist/{projectRoot}",
|
|
@@ -149,12 +118,12 @@
|
|
|
149
118
|
"release": {
|
|
150
119
|
"projects": "*",
|
|
151
120
|
"projectsRelationship": "independent",
|
|
121
|
+
"releaseTagPattern": "{projectName}-v{version}",
|
|
152
122
|
"changelog": {
|
|
153
123
|
"workspaceChangelog": false,
|
|
154
124
|
"projectChangelogs": {
|
|
155
125
|
"createRelease": "github",
|
|
156
|
-
"entryWhenNoChanges": false
|
|
157
|
-
"renderer": "@storm-software/git-tools/changelog-renderer/index.cjs"
|
|
126
|
+
"entryWhenNoChanges": false
|
|
158
127
|
}
|
|
159
128
|
},
|
|
160
129
|
"version": {
|
|
@@ -174,4 +143,4 @@
|
|
|
174
143
|
"analyzeSourceFiles": false
|
|
175
144
|
}
|
|
176
145
|
}
|
|
177
|
-
}
|
|
146
|
+
}
|
package/package.json
CHANGED