@eui/tools 6.13.14 → 6.13.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.13.14
1
+ 6.13.16
package/CHANGELOG.md CHANGED
@@ -1,3 +1,21 @@
1
+ ## 6.13.16 (2023-11-29)
2
+
3
+ ##### Bug Fixes
4
+
5
+ * **other:**
6
+ * srcRootDefault is undefined - EUI-8525 [EUI-8525](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-8525) ([f3be0513](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/f3be0513f031e5b897f46b3838c9bcc5aafb7e9a))
7
+
8
+ * * *
9
+ * * *
10
+ ## 6.13.15 (2023-11-29)
11
+
12
+ ##### Bug Fixes
13
+
14
+ * **other:**
15
+ * srcRootDefault is undefined - EUI-8525 [EUI-8525](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-8525) ([4b6c8d2a](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/4b6c8d2a5d6c5e1984bc9adcba9bcb240ca3c791))
16
+
17
+ * * *
18
+ * * *
1
19
  ## 6.13.14 (2023-11-27)
2
20
 
3
21
  ##### Chores
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "6.13.14",
3
+ "version": "6.13.16",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -108,8 +108,9 @@ const runUI = (pkg, isMaster) => {
108
108
  return gitUtils.getShortHash(pkg.paths.root);
109
109
  })
110
110
  .then((gitShortHash) => {
111
+ const hasSubEntries = pkg.build && pkg.build.srcRootDefault === false;
111
112
  return templateUtils.generateSonarPropertiesUI(
112
- pkg.name, gitShortHash, pkg.paths.root, !pkg.build.srcRootDefault
113
+ pkg.name, gitShortHash, pkg.paths.root, hasSubEntries
113
114
  );
114
115
  })
115
116
  .then(() => {