lingo.dev 0.89.4 → 0.89.6
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/README.md +2 -2
- package/build/cli.cjs +11 -5
- package/build/cli.cjs.map +1 -1
- package/build/cli.mjs +11 -5
- package/build/cli.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -162,13 +162,13 @@ Want to contribute? Create a pull request!
|
|
|
162
162
|
## 🌐 Readme in other languages
|
|
163
163
|
|
|
164
164
|
- [English](https://github.com/lingodotdev/lingo.dev)
|
|
165
|
+
- [Chinese](/readme/zh-Hans.md)
|
|
166
|
+
- [Japanese](/readme/ja.md)
|
|
165
167
|
- [Spanish](/readme/es.md)
|
|
166
168
|
- [French](/readme/fr.md)
|
|
167
169
|
- [Russian](/readme/ru.md)
|
|
168
170
|
- [German](/readme/de.md)
|
|
169
|
-
- [Chinese](/readme/zh-Hans.md)
|
|
170
171
|
- [Korean](/readme/ko.md)
|
|
171
|
-
- [Japanese](/readme/ja.md)
|
|
172
172
|
- [Italian](/readme/it.md)
|
|
173
173
|
- [Arabic](/readme/ar.md)
|
|
174
174
|
- [Hindi](/readme/hi.md)
|
package/build/cli.cjs
CHANGED
|
@@ -4787,6 +4787,9 @@ var gitConfig = {
|
|
|
4787
4787
|
userName: "Lingo.dev",
|
|
4788
4788
|
userEmail: "support@lingo.dev"
|
|
4789
4789
|
};
|
|
4790
|
+
function escapeShellArg(arg) {
|
|
4791
|
+
return `'${arg.replace(/'/g, "'\\''")}'`;
|
|
4792
|
+
}
|
|
4790
4793
|
|
|
4791
4794
|
// src/cli/cmd/ci/flows/in-branch.ts
|
|
4792
4795
|
var InBranchFlow = class extends IntegrationFlow {
|
|
@@ -4808,9 +4811,12 @@ var InBranchFlow = class extends IntegrationFlow {
|
|
|
4808
4811
|
this.ora.start("Committing changes");
|
|
4809
4812
|
_child_process.execSync.call(void 0, `git add .`, { stdio: "inherit" });
|
|
4810
4813
|
_child_process.execSync.call(void 0, `git status --porcelain`, { stdio: "inherit" });
|
|
4811
|
-
_child_process.execSync.call(void 0,
|
|
4812
|
-
|
|
4813
|
-
|
|
4814
|
+
_child_process.execSync.call(void 0,
|
|
4815
|
+
`git commit -m ${escapeShellArg(this.platformKit.config.commitMessage)} --no-verify`,
|
|
4816
|
+
{
|
|
4817
|
+
stdio: "inherit"
|
|
4818
|
+
}
|
|
4819
|
+
);
|
|
4814
4820
|
this.ora.succeed("Changes committed");
|
|
4815
4821
|
this.ora.start("Pushing changes to remote");
|
|
4816
4822
|
const currentBranch = _nullishCoalesce(this.i18nBranchName, () => ( this.platformKit.platformConfig.baseBranchName));
|
|
@@ -5040,7 +5046,7 @@ var PullRequestFlow = class extends InBranchFlow {
|
|
|
5040
5046
|
if (hasChanges) {
|
|
5041
5047
|
_child_process.execSync.call(void 0, "git add .", { stdio: "inherit" });
|
|
5042
5048
|
_child_process.execSync.call(void 0,
|
|
5043
|
-
`git commit -m "chore: sync with ${this.platformKit.platformConfig.baseBranchName}"`,
|
|
5049
|
+
`git commit -m "chore: sync with ${this.platformKit.platformConfig.baseBranchName}" --no-verify`,
|
|
5044
5050
|
{
|
|
5045
5051
|
stdio: "inherit"
|
|
5046
5052
|
}
|
|
@@ -5890,7 +5896,7 @@ function validateParams2(i18nConfig, flags) {
|
|
|
5890
5896
|
// package.json
|
|
5891
5897
|
var package_default = {
|
|
5892
5898
|
name: "lingo.dev",
|
|
5893
|
-
version: "0.89.
|
|
5899
|
+
version: "0.89.6",
|
|
5894
5900
|
description: "Lingo.dev CLI",
|
|
5895
5901
|
private: false,
|
|
5896
5902
|
publishConfig: {
|