@eui/tools 5.3.49 → 5.3.50

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.49
1
+ 5.3.50
package/CHANGELOG.md CHANGED
@@ -1,3 +1,13 @@
1
+ ## 5.3.50 (2022-09-16)
2
+
3
+ ##### Bug Fixes
4
+
5
+ * **other:**
6
+ * remove exception thrown on unlock package step - EUI-4107 [EUI-4107](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-4107) ([a8c284ef](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/a8c284ef57c55325fd5d3a3ee4c563a19309e28c))
7
+ * forced zone.js resolutions for eUI14 - avoid clash with ionic for eUI mobile - EUI-4107 [EUI-4107](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-4107) ([21bc18da](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/21bc18da6831246585d3a8894731148e007a4658))
8
+
9
+ * * *
10
+ * * *
1
11
  ## 5.3.49 (2022-09-16)
2
12
 
3
13
  ##### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "5.3.49",
3
+ "version": "5.3.50",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -1,5 +1,6 @@
1
1
  {
2
2
  "@types/node": ">=14.14.10",
3
3
  "https-proxy-agent": ">=2.2.3",
4
- "mem": ">=4.3.0 <=8.1.1"
4
+ "mem": ">=4.3.0 <=8.1.1",
5
+ "zone.js": ">=0.11.5"
5
6
  }
@@ -602,7 +602,14 @@ module.exports.sendSuccessNotification = (pkg, version, pkgMetadata) => {
602
602
 
603
603
  .then(() => {
604
604
  if (!pkg.backend) {
605
- return metadataUtils.package.unlockPackage(pkg);
605
+ return Promise.resolve()
606
+ .then(() => {
607
+ return metadataUtils.package.unlockPackage(pkg);
608
+ })
609
+ .catch((e) => {
610
+ utils.tools.logError('ERROR UNLOCKING PACKAGE');
611
+ console.log(e);
612
+ })
606
613
  }
607
614
  });
608
615
  })