zx-bulk-release 1.25.2 → 1.25.3

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,8 @@
1
+ ## [1.25.3](https://github.com/semrel-extra/zx-bulk-release/compare/v1.25.2...v1.25.3) (2023-01-12)
2
+
3
+ ### Fixes & improvements
4
+ * fix: add relpath to report ([d67355c](https://github.com/semrel-extra/zx-bulk-release/commit/d67355c8aced32918a8ae078e5182ce2ce58b3b6))
5
+
1
6
  ## [1.25.2](https://github.com/semrel-extra/zx-bulk-release/compare/v1.25.1...v1.25.2) (2022-11-22)
2
7
 
3
8
  ### Fixes & improvements
package/README.md CHANGED
@@ -250,6 +250,7 @@ Release process state is reported to the console and to a file if `--report` fla
250
250
  name: 'a',
251
251
  version: '1.1.0',
252
252
  path: '/pkg/abs/path',
253
+ relPath: 'pkg/rel/path',
253
254
  config: { // pkg config
254
255
  changelog: 'changelog',
255
256
  npmFetch: true
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zx-bulk-release",
3
- "version": "1.25.2",
3
+ "version": "1.25.3",
4
4
  "description": "zx-based alternative for multi-semantic-release",
5
5
  "type": "module",
6
6
  "exports": "./src/main/js/index.js",
@@ -53,12 +53,13 @@ export const createReporter = (file, logger = console) => {
53
53
  setQueue(queue, packages) {
54
54
  state.queue = queue
55
55
  state.packages = queue.map(name => {
56
- const {manifest: {version}, absPath} = packages[name]
56
+ const {manifest: {version}, absPath, relPath} = packages[name]
57
57
  return {
58
58
  status: 'initial',
59
59
  name,
60
60
  version,
61
- path: absPath
61
+ path: absPath,
62
+ relPath
62
63
  }
63
64
  })
64
65
  },