@eui/tools 6.1.2 → 6.1.3
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 +9 -0
- package/package.json +1 -1
- package/scripts/csdr/init/init.js +5 -0
package/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.1.
|
|
1
|
+
6.1.3
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## 6.1.3 (2022-11-07)
|
|
2
|
+
|
|
3
|
+
##### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* setting project on init phase - MWP-8946 [MWP-8946](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-8946) ([30d46bfc](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/30d46bfcf9bba47fc4c4bcfc5f1761bcc7e2a0cb))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
1
10
|
## 6.1.2 (2022-11-06)
|
|
2
11
|
|
|
3
12
|
##### Bug Fixes
|
package/package.json
CHANGED
|
@@ -34,6 +34,11 @@ module.exports.init = () => {
|
|
|
34
34
|
initialResponse.branch = 'develop';
|
|
35
35
|
}
|
|
36
36
|
|
|
37
|
+
// setting project to null if forced to NONE
|
|
38
|
+
if (initialResponse.project === 'NONE') {
|
|
39
|
+
initialResponse.project = null;
|
|
40
|
+
}
|
|
41
|
+
|
|
37
42
|
// Storing the response for propagation
|
|
38
43
|
var finalResponse;
|
|
39
44
|
|