zx-bulk-release 2.2.2 → 2.2.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
+ ## [2.2.3](https://github.com/semrel-extra/zx-bulk-release/compare/v2.2.2...v2.2.3) (2023-03-24)
2
+
3
+ ### Fixes & improvements
4
+ * fix: debug ([c1699e6](https://github.com/semrel-extra/zx-bulk-release/commit/c1699e6c7d8bbc180c4ef17dfdb9f25816814578))
5
+
1
6
  ## [2.2.2](https://github.com/semrel-extra/zx-bulk-release/compare/v2.2.1...v2.2.2) (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.2",
3
+ "version": "2.2.3",
4
4
  "description": "zx-based alternative for multi-semantic-release",
5
5
  "type": "module",
6
6
  "exports": {
@@ -34,6 +34,8 @@ export const normalizePkgConfig = (config, env) => ({
34
34
  npmFetch: config.npmFetch || config.fetch || config.fetchPkg,
35
35
  buildCmd: config.buildCmd || config.cmd,
36
36
  get ghBasicAuth() {
37
+ console.log('this.ghToken', !!this.ghToken)
38
+ console.log('this.ghUser', !!this.ghUser)
37
39
  return this.ghUser && this.ghToken ? `${this.ghUser}:${this.ghToken}` : false
38
40
  }
39
41
  })