lingo.dev 0.77.0 → 0.77.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/build/cli.cjs +7 -3
- package/build/cli.cjs.map +1 -1
- package/build/cli.mjs +10 -6
- package/build/cli.mjs.map +1 -1
- package/package.json +2 -2
package/build/cli.cjs
CHANGED
|
@@ -3223,7 +3223,7 @@ async function retryWithExponentialBackoff(operation, maxAttempts, baseDelay = 1
|
|
|
3223
3223
|
throw new Error("Unreachable code");
|
|
3224
3224
|
}
|
|
3225
3225
|
function createLocalizationEngineConnection(params) {
|
|
3226
|
-
const replexicaEngine = new (0, __sdk.
|
|
3226
|
+
const replexicaEngine = new (0, __sdk.LingoDotDevEngine)({
|
|
3227
3227
|
apiKey: params.apiKey,
|
|
3228
3228
|
apiUrl: params.apiUrl
|
|
3229
3229
|
});
|
|
@@ -3234,7 +3234,11 @@ function createLocalizationEngineConnection(params) {
|
|
|
3234
3234
|
args.processableData,
|
|
3235
3235
|
{
|
|
3236
3236
|
sourceLocale: args.sourceLocale,
|
|
3237
|
-
targetLocale: args.targetLocale
|
|
3237
|
+
targetLocale: args.targetLocale,
|
|
3238
|
+
reference: {
|
|
3239
|
+
[args.sourceLocale]: args.sourceData,
|
|
3240
|
+
[args.targetLocale]: args.targetData
|
|
3241
|
+
}
|
|
3238
3242
|
},
|
|
3239
3243
|
onProgress
|
|
3240
3244
|
),
|
|
@@ -3573,7 +3577,7 @@ var mcp_default = new (0, _interactivecommander.Command)().command("mcp").descri
|
|
|
3573
3577
|
// package.json
|
|
3574
3578
|
var package_default = {
|
|
3575
3579
|
name: "lingo.dev",
|
|
3576
|
-
version: "0.77.
|
|
3580
|
+
version: "0.77.1",
|
|
3577
3581
|
description: "Lingo.dev CLI",
|
|
3578
3582
|
private: false,
|
|
3579
3583
|
publishConfig: {
|