@eui/tools 6.20.8 → 6.20.9
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.20.
|
|
1
|
+
6.20.9
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## 6.20.9 (2024-08-07)
|
|
2
|
+
|
|
3
|
+
##### Chores
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* add git operations scripts output - EUI-9788 [EUI-9788](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-9788) ([0c3c6441](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/0c3c64412a84295b9a62c64cee03b2917f4d38f5))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
1
10
|
## 6.20.8 (2024-08-07)
|
|
2
11
|
|
|
3
12
|
##### Chores
|
package/package.json
CHANGED
|
@@ -16,7 +16,7 @@ const innerCommon = require('./common');
|
|
|
16
16
|
// LOCAL TEST :
|
|
17
17
|
// - symlink eUI tools sources to node_modules of standalone pkg folder node_modules to test
|
|
18
18
|
// - execute this command on the standalone pkg folder :
|
|
19
|
-
// npx @eui/tools release-package-standalone --dryRun --branch develop --debug --debugNotification --skipCommitsCheck --skipPublish --skipGitUpdates --skipLint --skipTest
|
|
19
|
+
// npx @eui/tools release-package-standalone --dryRun --pkgName zzz-test-package-ui --branch develop --debug --debugNotification --skipCommitsCheck --skipPublish --skipGitUpdates --skipLint --skipTest
|
|
20
20
|
|
|
21
21
|
|
|
22
22
|
module.exports.run = () => {
|
|
@@ -79,11 +79,11 @@ const hasCommitsSinceLastTag = (folder, version) => {
|
|
|
79
79
|
}
|
|
80
80
|
|
|
81
81
|
const commitAndPushCore = (branch, message, folder) => {
|
|
82
|
-
execa.sync('git', ['add', '.'], { cwd: folder });
|
|
83
|
-
execa.sync('git', ['commit', '-m', message], { cwd: folder });
|
|
84
|
-
execa.sync('git', ['checkout', branch], { cwd: folder });
|
|
85
|
-
execa.sync('git', ['pull', 'origin', branch], { cwd: folder });
|
|
86
|
-
execa.sync('git', ['push', 'origin', branch], { cwd: folder });
|
|
82
|
+
execa.sync('git', ['add', '.'], { cwd: folder, stdio: 'inherit' });
|
|
83
|
+
execa.sync('git', ['commit', '-m', message], { cwd: folder, stdio: 'inherit' });
|
|
84
|
+
execa.sync('git', ['checkout', branch], { cwd: folder, stdio: 'inherit' });
|
|
85
|
+
execa.sync('git', ['pull', 'origin', branch], { cwd: folder, stdio: 'inherit' });
|
|
86
|
+
execa.sync('git', ['push', 'origin', branch], { cwd: folder, stdio: 'inherit' });
|
|
87
87
|
}
|
|
88
88
|
|
|
89
89
|
// double-run in case of race-condition of 2 pkg built and trying to push as the same time
|