@eui/tools 5.3.89 → 5.3.91

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
- 5.3.89
1
+ 5.3.91
package/CHANGELOG.md CHANGED
@@ -1,3 +1,21 @@
1
+ ## 5.3.91 (2022-11-08)
2
+
3
+ ##### Bug Fixes
4
+
5
+ * **other:**
6
+ * git pull rebase - metadata issues - EUI-6448 [EUI-6448](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-6448) ([f674c504](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/f674c504aee8e17b00f01d7e2da46bb88fb975fa))
7
+
8
+ * * *
9
+ * * *
10
+ ## 5.3.90 (2022-11-03)
11
+
12
+ ##### Bug Fixes
13
+
14
+ * **other:**
15
+ * missing angularpackage def for registration - EUI-6448 [EUI-6448](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-6448) ([b84f5db0](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/b84f5db0f8dcc1d7633e734bbb7d71561a8db2f2))
16
+
17
+ * * *
18
+ * * *
1
19
  ## 5.3.89 (2022-10-31)
2
20
 
3
21
  ##### Bug Fixes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "5.3.89",
4
- "tag": "latest",
3
+ "version": "5.3.91",
4
+ "tag": "prev",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
7
7
  "main": "index.js",
@@ -27,6 +27,7 @@ const {
27
27
  angularPackageSubEntryDef,
28
28
  angularPackageDefV13,
29
29
  angularPackageDefV14,
30
+ angularPackageDefV15,
30
31
  angularElementProjectDef,
31
32
  tsConfigDef,
32
33
  tsConfigSpecDef,
@@ -110,8 +110,8 @@ const commitAndPush = (branch, message, folder) => {
110
110
  }
111
111
 
112
112
  try {
113
- tools.logInfo('Commit and push - second try - retrying pull & push');
114
- execa.sync('git', ['pull', 'origin', branch], { cwd: folder });
113
+ tools.logInfo('Commit and push - second try - retrying pull rebase & push');
114
+ execa.sync('git', ['pull', 'origin', branch, 'rebase'], { cwd: folder });
115
115
  execa.sync('git', ['push', 'origin', branch], { cwd: folder });
116
116
 
117
117
  } catch (e3) {