@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.
- package/.version.properties +1 -1
- package/CHANGELOG.md +18 -0
- package/package.json +1 -1
- package/scripts/utils/sonar/sonar-utils.js +2 -1
package/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.13.
|
|
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
|
@@ -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,
|
|
113
|
+
pkg.name, gitShortHash, pkg.paths.root, hasSubEntries
|
|
113
114
|
);
|
|
114
115
|
})
|
|
115
116
|
.then(() => {
|