lingo.dev 0.89.0 → 0.89.1

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 CHANGED
@@ -172,5 +172,6 @@ Want to contribute? Create a pull request!
172
172
  - [Italian](/readme/it.md)
173
173
  - [Arabic](/readme/ar.md)
174
174
  - [Hindi](/readme/hi.md)
175
+ - [Bengali](/readme/bn.md)
175
176
 
176
177
  Don't see your language? Just add a new language code to the [`i18n.json`](./i18n.json) file and open a PR.
package/build/cli.cjs CHANGED
@@ -4825,10 +4825,14 @@ var InBranchFlow = class extends IntegrationFlow {
4825
4825
  }).length > 0;
4826
4826
  }
4827
4827
  async runLingoDotDev() {
4828
- _child_process.execSync.call(void 0,
4829
- `npx lingo.dev@latest i18n --api-key ${this.platformKit.config.replexicaApiKey}`,
4830
- { stdio: "inherit" }
4831
- );
4828
+ try {
4829
+ await i18n_default.exitOverride().parseAsync(["--api-key", this.platformKit.config.replexicaApiKey], {
4830
+ from: "user"
4831
+ });
4832
+ } catch (err) {
4833
+ if (err.code === "commander.helpDisplayed") return;
4834
+ throw err;
4835
+ }
4832
4836
  }
4833
4837
  configureGit() {
4834
4838
  const { processOwnCommits } = this.platformKit.config;
@@ -5882,7 +5886,7 @@ function validateParams2(i18nConfig, flags) {
5882
5886
  // package.json
5883
5887
  var package_default = {
5884
5888
  name: "lingo.dev",
5885
- version: "0.89.0",
5889
+ version: "0.89.1",
5886
5890
  description: "Lingo.dev CLI",
5887
5891
  private: false,
5888
5892
  publishConfig: {