@eui/tools 6.5.4 → 6.5.5

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.5.4
1
+ 6.5.5
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## 6.5.5 (2023-03-03)
2
+
3
+ ##### Chores
4
+
5
+ * **other:**
6
+ * Make package name uppercase SQ appears to be case-sensitive MWP-9366 [MWP-9366](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-9366) ([bacaf740](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/bacaf740ed3cbf4a69c36cb7729e01fe9249d532))
7
+
8
+ * * *
9
+ * * *
1
10
  ## 6.5.4 (2023-03-03)
2
11
 
3
12
  ##### Chores
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "6.5.4",
3
+ "version": "6.5.5",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -83,7 +83,7 @@ const generateSonarPropertiesUI = (pkgName, pkgVersion, outputPath) => {
83
83
  })
84
84
  .then(() => {
85
85
  tools.logInfo('Replace project name token...');
86
- return tools.replaceInFile(outputFilePath, '@project.name@', pkgName);
86
+ return tools.replaceInFile(outputFilePath, '@project.name@', pkgName.toUpperCase());
87
87
  })
88
88
  .then(() => {
89
89
  tools.logInfo('Replace project version token...');
@@ -136,7 +136,7 @@ const generateSonarPropertiesBackend = (groupId, artifactId, version, modulesLis
136
136
  })
137
137
  .then(() => {
138
138
  tools.logInfo('Replace project name token...');
139
- return tools.replaceInFile(outputFilePath, '@project.name@', artifactId);
139
+ return tools.replaceInFile(outputFilePath, '@project.name@', artifactId.toUpperCase());
140
140
  })
141
141
  .then(() => {
142
142
  tools.logInfo('Replace project version token...');