zx-bulk-release 2.2.3 → 2.2.4

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
+ ## [2.2.4](https://github.com/semrel-extra/zx-bulk-release/compare/v2.2.3...v2.2.4) (2023-03-24)
2
+
3
+ ### Fixes & improvements
4
+ * fix: add debug notes ([3cf101b](https://github.com/semrel-extra/zx-bulk-release/commit/3cf101b3330a5b0415684d9c3b097bb1832b4365))
5
+
1
6
  ## [2.2.3](https://github.com/semrel-extra/zx-bulk-release/compare/v2.2.2...v2.2.3) (2023-03-24)
2
7
 
3
8
  ### Fixes & improvements
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zx-bulk-release",
3
- "version": "2.2.3",
3
+ "version": "2.2.4",
4
4
  "description": "zx-based alternative for multi-semantic-release",
5
5
  "type": "module",
6
6
  "exports": {
@@ -68,7 +68,9 @@ export const getRepo = async (_cwd, {basicAuth} = {}) => {
68
68
  const cwd = await getRoot(_cwd)
69
69
  if (repos[cwd]) return repos[cwd]
70
70
 
71
- console.log('!!! has basic auth', !!basicAuth)
71
+ const e = new Error()
72
+ console.log('!!! has basic auth', !!basicAuth, e.stack)
73
+
72
74
  const originUrl = await getOrigin(cwd)
73
75
  const [, , repoHost, repoName] = originUrl.replace(':', '/').replace(/\.git/, '').match(/.+(@|\/\/)([^/]+)\/(.+)$/) || []
74
76
  const repoPublicUrl = `https://${repoHost}/${repoName}`