@eui/tools 6.13.13 → 6.13.14
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
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.13.
|
|
1
|
+
6.13.14
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## 6.13.14 (2023-11-27)
|
|
2
|
+
|
|
3
|
+
##### Chores
|
|
4
|
+
|
|
5
|
+
* **sonar:**
|
|
6
|
+
* adapt sonar utils - EUI-8525 [EUI-8525](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-8525) ([055b554a](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/055b554a792634a42c2a869073ccccfdb01663c4))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
1
10
|
## 6.13.13 (2023-11-24)
|
|
2
11
|
|
|
3
12
|
##### Bug Fixes
|
package/package.json
CHANGED
|
@@ -91,7 +91,7 @@ const generateSonarPropertiesUI = (pkgName, pkgVersion, outputPath, hasSubEntrie
|
|
|
91
91
|
})
|
|
92
92
|
.then(() => {
|
|
93
93
|
tools.logInfo('Replace project package path...');
|
|
94
|
-
return tools.replaceInFile(outputFilePath, '@project.path@', hasSubEntries ?
|
|
94
|
+
return tools.replaceInFile(outputFilePath, '@project.path@', path.join(outputPath, hasSubEntries ? '': '/src/lib/'));
|
|
95
95
|
})
|
|
96
96
|
.then(() => {
|
|
97
97
|
tools.logInfo('Replace project lcov root path...');
|
|
@@ -109,7 +109,7 @@ const runUI = (pkg, isMaster) => {
|
|
|
109
109
|
})
|
|
110
110
|
.then((gitShortHash) => {
|
|
111
111
|
return templateUtils.generateSonarPropertiesUI(
|
|
112
|
-
pkg.name, gitShortHash, pkg.paths.root, !pkg.build.
|
|
112
|
+
pkg.name, gitShortHash, pkg.paths.root, !pkg.build.srcRootDefault
|
|
113
113
|
);
|
|
114
114
|
})
|
|
115
115
|
.then(() => {
|