@eui/tools 5.3.34 → 5.3.35

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.34
1
+ 5.3.35
package/CHANGELOG.md CHANGED
@@ -1,3 +1,16 @@
1
+ ## 5.3.35 (2022-07-14)
2
+
3
+ ##### Chores
4
+
5
+ * **other:**
6
+ * minor - EUI-6231 [EUI-6231](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-6231) ([f0c7b31b](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/f0c7b31bbc6c30daef688f5b4bdbf38a7470ebc5))
7
+ ##### Bug Fixes
8
+
9
+ * **other:**
10
+ * incorrect tsconfig filename ([6c65019b](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/6c65019b150736f2a6bd5d1b9801bbfafe3a5a5b))
11
+
12
+ * * *
13
+ * * *
1
14
  ## 5.3.34 (2022-07-14)
2
15
 
3
16
  ##### Chores
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "5.3.34",
3
+ "version": "5.3.35",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -107,7 +107,7 @@ module.exports.getPackage = (pkgName, fromCsdrConfig, optional) => {
107
107
 
108
108
  // additional pkg infos
109
109
  pkg.paths = this.getPackagePaths(pkg);
110
- pkg.tsConfigFileName = path.parse(pkg.paths.tsConfig).name;
110
+ pkg.tsConfigFileName = `${path.parse(pkg.paths.tsConfig).name}.json` ;
111
111
 
112
112
  // devops file location
113
113
  if (pkg.child) {
@@ -167,7 +167,6 @@ module.exports.getCsdrProjects = () => {
167
167
 
168
168
 
169
169
 
170
-
171
170
  module.exports.getTeamsProject = (projects, project) => {
172
171
  let teams = [];
173
172