lingo.dev 0.78.14 → 0.78.15
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/build/cli.cjs +3 -3
- package/build/cli.cjs.map +1 -1
- package/build/cli.mjs +3 -3
- package/build/cli.mjs.map +1 -1
- package/package.json +2 -2
package/build/cli.cjs
CHANGED
|
@@ -3595,14 +3595,14 @@ async function retryWithExponentialBackoff(operation, maxAttempts, baseDelay = 1
|
|
|
3595
3595
|
throw new Error("Unreachable code");
|
|
3596
3596
|
}
|
|
3597
3597
|
function createLocalizationEngineConnection(params) {
|
|
3598
|
-
const
|
|
3598
|
+
const engine = new (0, __sdk.LingoDotDevEngine)({
|
|
3599
3599
|
apiKey: params.apiKey,
|
|
3600
3600
|
apiUrl: params.apiUrl
|
|
3601
3601
|
});
|
|
3602
3602
|
return {
|
|
3603
3603
|
process: async (args, onProgress) => {
|
|
3604
3604
|
return retryWithExponentialBackoff(
|
|
3605
|
-
() =>
|
|
3605
|
+
() => engine.localizeObject(
|
|
3606
3606
|
args.processableData,
|
|
3607
3607
|
{
|
|
3608
3608
|
sourceLocale: args.sourceLocale,
|
|
@@ -3949,7 +3949,7 @@ var mcp_default = new (0, _interactivecommander.Command)().command("mcp").descri
|
|
|
3949
3949
|
// package.json
|
|
3950
3950
|
var package_default = {
|
|
3951
3951
|
name: "lingo.dev",
|
|
3952
|
-
version: "0.78.
|
|
3952
|
+
version: "0.78.15",
|
|
3953
3953
|
description: "Lingo.dev CLI",
|
|
3954
3954
|
private: false,
|
|
3955
3955
|
publishConfig: {
|