lingo.dev 0.104.0 → 0.105.0
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 +41 -37
- package/build/cli.cjs.map +1 -1
- package/build/cli.mjs +7 -3
- package/build/cli.mjs.map +1 -1
- package/package.json +4 -4
package/build/cli.mjs
CHANGED
|
@@ -5602,7 +5602,9 @@ var i18n_default = new Command12().command("i18n").description("Run Localization
|
|
|
5602
5602
|
}
|
|
5603
5603
|
const deltaProcessor = createDeltaProcessor(bucketPath.pathPattern);
|
|
5604
5604
|
const checksums = await deltaProcessor.createChecksums(sourceData);
|
|
5605
|
-
|
|
5605
|
+
if (!flags.locale?.length) {
|
|
5606
|
+
await deltaProcessor.saveChecksums(checksums);
|
|
5607
|
+
}
|
|
5606
5608
|
}
|
|
5607
5609
|
} catch (_error) {
|
|
5608
5610
|
const error = new Error(
|
|
@@ -8358,7 +8360,9 @@ function createWorkerTask(args) {
|
|
|
8358
8360
|
finalRenamedTargetData
|
|
8359
8361
|
);
|
|
8360
8362
|
const checksums2 = await deltaProcessor.createChecksums(sourceData);
|
|
8361
|
-
|
|
8363
|
+
if (!args.ctx.flags.targetLocale?.length) {
|
|
8364
|
+
await deltaProcessor.saveChecksums(checksums2);
|
|
8365
|
+
}
|
|
8362
8366
|
});
|
|
8363
8367
|
return { status: "success" };
|
|
8364
8368
|
} catch (error) {
|
|
@@ -9950,7 +9954,7 @@ async function renderHero2() {
|
|
|
9950
9954
|
// package.json
|
|
9951
9955
|
var package_default = {
|
|
9952
9956
|
name: "lingo.dev",
|
|
9953
|
-
version: "0.
|
|
9957
|
+
version: "0.105.0",
|
|
9954
9958
|
description: "Lingo.dev CLI",
|
|
9955
9959
|
private: false,
|
|
9956
9960
|
publishConfig: {
|