lingo.dev 0.102.2 → 0.102.4
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 +1 -1
- 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 +3 -3
package/build/cli.mjs
CHANGED
|
@@ -2466,14 +2466,14 @@ function createXcodeXcstringsLoader(defaultLocale) {
|
|
|
2466
2466
|
});
|
|
2467
2467
|
}
|
|
2468
2468
|
function _removeLocale(input2, locale) {
|
|
2469
|
-
const {
|
|
2469
|
+
const { strings } = input2;
|
|
2470
2470
|
const newStrings = _12.cloneDeep(strings);
|
|
2471
2471
|
for (const [key, value] of Object.entries(newStrings)) {
|
|
2472
2472
|
if (value.localizations?.[locale]) {
|
|
2473
2473
|
delete value.localizations[locale];
|
|
2474
2474
|
}
|
|
2475
2475
|
}
|
|
2476
|
-
return {
|
|
2476
|
+
return { ...input2, strings: newStrings };
|
|
2477
2477
|
}
|
|
2478
2478
|
|
|
2479
2479
|
// src/cli/loaders/prettier.ts
|
|
@@ -9917,7 +9917,7 @@ async function renderHero2() {
|
|
|
9917
9917
|
// package.json
|
|
9918
9918
|
var package_default = {
|
|
9919
9919
|
name: "lingo.dev",
|
|
9920
|
-
version: "0.102.
|
|
9920
|
+
version: "0.102.4",
|
|
9921
9921
|
description: "Lingo.dev CLI",
|
|
9922
9922
|
private: false,
|
|
9923
9923
|
publishConfig: {
|