lingo.dev 0.79.4 → 0.79.5

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 CHANGED
@@ -2993,12 +2993,13 @@ function createInjectLocaleLoader(injectLocaleKeys) {
2993
2993
  if (!injectLocaleKeys) {
2994
2994
  return data;
2995
2995
  }
2996
+ const mergedData = _lodash2.default.merge({}, originalInput, data);
2996
2997
  injectLocaleKeys.forEach((key) => {
2997
- if (_lodash2.default.get(originalInput, key) === originalLocale) {
2998
- _lodash2.default.set(data, key, locale);
2998
+ if (_lodash2.default.get(mergedData, key) === originalLocale) {
2999
+ _lodash2.default.set(mergedData, key, locale);
2999
3000
  }
3000
3001
  });
3001
- return data;
3002
+ return mergedData;
3002
3003
  }
3003
3004
  });
3004
3005
  }
@@ -4619,7 +4620,7 @@ var ci_default = new (0, _interactivecommander.Command)().command("ci").descript
4619
4620
  // package.json
4620
4621
  var package_default = {
4621
4622
  name: "lingo.dev",
4622
- version: "0.79.4",
4623
+ version: "0.79.5",
4623
4624
  description: "Lingo.dev CLI",
4624
4625
  private: false,
4625
4626
  publishConfig: {