@eui/tools 6.20.1 → 6.20.2
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/utils/git-utils.js +1 -1
package/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.20.
|
|
1
|
+
6.20.2
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## 6.20.2 (2024-08-07)
|
|
2
|
+
|
|
3
|
+
##### Chores
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* adapted branch-name fetch for standalone pkg builds - EUI-9788 [EUI-9788](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-9788) ([5059e861](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/5059e86141128602044f41059ff6ff6578659bad))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
1
10
|
## 6.20.1 (2024-08-07)
|
|
2
11
|
|
|
3
12
|
##### Chores
|
package/package.json
CHANGED
|
@@ -31,7 +31,7 @@ const getLastTag = (folder) => {
|
|
|
31
31
|
}
|
|
32
32
|
|
|
33
33
|
const getBranchName = (folder = process.cwd()) => {
|
|
34
|
-
const branchName = execa.sync('git', ['
|
|
34
|
+
const branchName = execa.sync('git', ['symbolic-ref','--short', 'HEAD'], { cwd: folder }).stdout;
|
|
35
35
|
return branchName;
|
|
36
36
|
}
|
|
37
37
|
|