@eui/tools 6.11.15 → 6.11.16

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.
@@ -1 +1 @@
1
- 6.11.15
1
+ 6.11.16
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## 6.11.16 (2023-04-26)
2
+
3
+ ##### Chores
4
+
5
+ * **other:**
6
+ * re-enable debug on git commitPush method - EUI-7121 [EUI-7121](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-7121) ([95b1a0a5](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/95b1a0a552f52499ef63bea57038006019fe848e))
7
+
8
+ * * *
9
+ * * *
1
10
  ## 6.11.15 (2023-04-25)
2
11
 
3
12
  ##### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "6.11.15",
3
+ "version": "6.11.16",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -115,9 +115,9 @@ const commitAndPush = (branch, message, folder) => {
115
115
  execa.sync('git', ['push', 'origin', branch], { cwd: folder });
116
116
 
117
117
  } catch (e3) {
118
- // if (debug) {
119
- // console.log(e3);
120
- // }
118
+ if (debug) {
119
+ console.log(e3);
120
+ }
121
121
  throw new Error(`Failed to push ${message} to ${folder}`);
122
122
  }
123
123
  }