@anolilab/multi-semantic-release 1.1.9 → 1.1.11
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 +7 -3
- package/README.md +1 -31
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,14 @@
|
|
|
1
|
-
## @anolilab/multi-semantic-release [1.1.
|
|
1
|
+
## @anolilab/multi-semantic-release [1.1.11](https://github.com/anolilab/semantic-release/compare/@anolilab/multi-semantic-release@1.1.10...@anolilab/multi-semantic-release@1.1.11) (2025-05-07)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* update dependencies across multiple packages, including @anolilab/* and @visulima/* to latest versions ([fc3cbd3](https://github.com/anolilab/semantic-release/commit/fc3cbd353f550d7f2de194c34416c3074ba60b11))
|
|
2
6
|
|
|
3
7
|
|
|
4
8
|
### Dependencies
|
|
5
9
|
|
|
6
|
-
* **@anolilab/semantic-release-clean-package-json:** upgraded to 2.0.
|
|
7
|
-
* **@anolilab/semantic-release-pnpm:** upgraded to 1.1.
|
|
10
|
+
* **@anolilab/semantic-release-clean-package-json:** upgraded to 2.0.2
|
|
11
|
+
* **@anolilab/semantic-release-pnpm:** upgraded to 1.1.11
|
|
8
12
|
|
|
9
13
|
## @anolilab/multi-semantic-release [1.1.7](https://github.com/anolilab/semantic-release/compare/@anolilab/multi-semantic-release@1.1.6...@anolilab/multi-semantic-release@1.1.7) (2025-01-14)
|
|
10
14
|
|
package/README.md
CHANGED
|
@@ -136,12 +136,6 @@ For example, let's say your project has 4 packages (i.e. a, b, c and d) and you
|
|
|
136
136
|
|
|
137
137
|
## Configuring Multi-Semantic-Release
|
|
138
138
|
|
|
139
|
-
multi-semantic-release can be configured a number of ways:
|
|
140
|
-
|
|
141
|
-
- A `.multi-releaserc` file, written in YAML or JSON, with optional extensions: `.yaml`/ `.yml`/ `.json`/ `.js`
|
|
142
|
-
- A `multi-release.config.js` file that exports an object
|
|
143
|
-
- A `multi-release` key in the workspace root package.json
|
|
144
|
-
|
|
145
139
|
Alternatively some options may be set via CLI flags.
|
|
146
140
|
|
|
147
141
|
**Note:** CLI arguments take precedence over options configured in the configuration file.
|
|
@@ -173,30 +167,6 @@ Alternatively some options may be set via CLI flags.
|
|
|
173
167
|
|
|
174
168
|
### Examples
|
|
175
169
|
|
|
176
|
-
- Via multi-release key in the project's package.json file:
|
|
177
|
-
|
|
178
|
-
```json
|
|
179
|
-
{
|
|
180
|
-
"multi-release": {
|
|
181
|
-
"ignorePackages": ["!packages/b/**", "!packages/c/**"],
|
|
182
|
-
"deps": {
|
|
183
|
-
"bump": "inherit"
|
|
184
|
-
}
|
|
185
|
-
}
|
|
186
|
-
}
|
|
187
|
-
```
|
|
188
|
-
|
|
189
|
-
- Via `.multi-releaserc` file:
|
|
190
|
-
|
|
191
|
-
```json
|
|
192
|
-
{
|
|
193
|
-
"ignorePackages": ["!packages/b/**", "!packages/c/**"],
|
|
194
|
-
"deps": {
|
|
195
|
-
"bump": "inherit"
|
|
196
|
-
}
|
|
197
|
-
}
|
|
198
|
-
```
|
|
199
|
-
|
|
200
170
|
- Via CLI:
|
|
201
171
|
|
|
202
172
|
```sh
|
|
@@ -357,7 +327,7 @@ The integration with semantic release is pretty janky — this is a quick summar
|
|
|
357
327
|
- If packages have local deps (e.g. `dependencies` in package.json points to an internal package) this step also does a `patch` bump if any of them did a bump.
|
|
358
328
|
- This has to work recursively! See [hasChangedDeep.js](https://github.com/dhoulb/multi-semantic-release/blob/master/lib/hasChangedDeep.js)
|
|
359
329
|
|
|
360
|
-
3. The configuration can be layered (i.e. global
|
|
330
|
+
3. The configuration can be layered (i.e. global `semantic-release` cli) and then per-directory overrides for individual packages).
|
|
361
331
|
|
|
362
332
|
- Had to duplicate the internal cosmiconfig setup from semantic release to get this working :(
|
|
363
333
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@anolilab/multi-semantic-release",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.11",
|
|
4
4
|
"description": "A multi semantic release tool for a monorepo.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"git-log-parser": "^1.2.1",
|
|
36
36
|
"lodash-es": "^4.17.21",
|
|
37
37
|
"resolve-from": "^5.0.0",
|
|
38
|
-
"semver": "^7.
|
|
38
|
+
"semver": "^7.7.1",
|
|
39
39
|
"signale": "^1.4.0",
|
|
40
40
|
"stream-buffers": "^3.0.3",
|
|
41
41
|
"yargs": "^17.7.2"
|