@eui/tools 6.11.15 → 6.11.17
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 +18 -0
- package/package.json +1 -1
- package/scripts/csdr/init/resources/14.x/browserslistrc +1 -1
- package/scripts/csdr/init/resources/14.x/yarn.lock +825 -214
- package/scripts/csdr/init/resources/14.x/yarn.lock.temp +14382 -0
- package/scripts/utils/git-utils.js +3 -3
|
@@ -115,9 +115,9 @@ const commitAndPush = (branch, message, folder) => {
|
|
|
115
115
|
execa.sync('git', ['push', 'origin', branch], { cwd: folder });
|
|
116
116
|
|
|
117
117
|
} catch (e3) {
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
118
|
+
if (debug) {
|
|
119
|
+
console.log(e3);
|
|
120
|
+
}
|
|
121
121
|
throw new Error(`Failed to push ${message} to ${folder}`);
|
|
122
122
|
}
|
|
123
123
|
}
|