@storm-software/workspace-tools 1.49.0 → 1.49.1
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/config/nx.json +13 -43
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## 1.49.1 (2024-01-21)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### 🩹 Fixes
|
|
5
|
+
|
|
6
|
+
- **workspace-tools:** Added custom `releaseTagPattern` to default Nx configuration ([9380b38f](https://github.com/storm-software/storm-ops/commit/9380b38f))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### ❤️ Thank You
|
|
10
|
+
|
|
11
|
+
- Patrick Sullivan
|
|
12
|
+
|
|
1
13
|
## 1.49.0 (2024-01-21)
|
|
2
14
|
|
|
3
15
|
|
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,6 +118,7 @@
|
|
|
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": {
|
|
@@ -174,4 +144,4 @@
|
|
|
174
144
|
"analyzeSourceFiles": false
|
|
175
145
|
}
|
|
176
146
|
}
|
|
177
|
-
}
|
|
147
|
+
}
|
package/package.json
CHANGED