lingo.dev 0.89.4 → 0.89.5
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 +8 -5
- package/build/cli.cjs.map +1 -1
- package/build/cli.mjs +8 -5
- package/build/cli.mjs.map +1 -1
- package/package.json +3 -3
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
|
@@ -4808,9 +4808,12 @@ var InBranchFlow = class extends IntegrationFlow {
|
|
|
4808
4808
|
this.ora.start("Committing changes");
|
|
4809
4809
|
_child_process.execSync.call(void 0, `git add .`, { stdio: "inherit" });
|
|
4810
4810
|
_child_process.execSync.call(void 0, `git status --porcelain`, { stdio: "inherit" });
|
|
4811
|
-
_child_process.execSync.call(void 0,
|
|
4812
|
-
|
|
4813
|
-
|
|
4811
|
+
_child_process.execSync.call(void 0,
|
|
4812
|
+
`git commit -m "${this.platformKit.config.commitMessage}" --no-verify`,
|
|
4813
|
+
{
|
|
4814
|
+
stdio: "inherit"
|
|
4815
|
+
}
|
|
4816
|
+
);
|
|
4814
4817
|
this.ora.succeed("Changes committed");
|
|
4815
4818
|
this.ora.start("Pushing changes to remote");
|
|
4816
4819
|
const currentBranch = _nullishCoalesce(this.i18nBranchName, () => ( this.platformKit.platformConfig.baseBranchName));
|
|
@@ -5040,7 +5043,7 @@ var PullRequestFlow = class extends InBranchFlow {
|
|
|
5040
5043
|
if (hasChanges) {
|
|
5041
5044
|
_child_process.execSync.call(void 0, "git add .", { stdio: "inherit" });
|
|
5042
5045
|
_child_process.execSync.call(void 0,
|
|
5043
|
-
`git commit -m "chore: sync with ${this.platformKit.platformConfig.baseBranchName}"`,
|
|
5046
|
+
`git commit -m "chore: sync with ${this.platformKit.platformConfig.baseBranchName}" --no-verify`,
|
|
5044
5047
|
{
|
|
5045
5048
|
stdio: "inherit"
|
|
5046
5049
|
}
|
|
@@ -5890,7 +5893,7 @@ function validateParams2(i18nConfig, flags) {
|
|
|
5890
5893
|
// package.json
|
|
5891
5894
|
var package_default = {
|
|
5892
5895
|
name: "lingo.dev",
|
|
5893
|
-
version: "0.89.
|
|
5896
|
+
version: "0.89.5",
|
|
5894
5897
|
description: "Lingo.dev CLI",
|
|
5895
5898
|
private: false,
|
|
5896
5899
|
publishConfig: {
|