lingo.dev 0.93.3 → 0.93.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/README.md +1 -0
- package/build/cli.cjs +18 -2
- package/build/cli.cjs.map +1 -1
- package/build/cli.mjs +18 -2
- package/build/cli.mjs.map +1 -1
- package/package.json +18 -3
package/README.md
CHANGED
|
@@ -86,5 +86,6 @@ If you like the work we're doing, consider giving us a ⭐️ to help us reach 3
|
|
|
86
86
|
- [Arabic](/readme/ar.md)
|
|
87
87
|
- [Hindi](/readme/hi.md)
|
|
88
88
|
- [Bengali](/readme/bn.md)
|
|
89
|
+
- [Farsi](/readme/fa.md)
|
|
89
90
|
|
|
90
91
|
Don't see your language? Just add a new language code to the [`i18n.json`](./i18n.json) file and open a PR!
|
package/build/cli.cjs
CHANGED
|
@@ -6580,7 +6580,7 @@ async function renderHero() {
|
|
|
6580
6580
|
// package.json
|
|
6581
6581
|
var package_default = {
|
|
6582
6582
|
name: "lingo.dev",
|
|
6583
|
-
version: "0.93.
|
|
6583
|
+
version: "0.93.5",
|
|
6584
6584
|
description: "Lingo.dev CLI",
|
|
6585
6585
|
private: false,
|
|
6586
6586
|
publishConfig: {
|
|
@@ -6614,16 +6614,31 @@ var package_default = {
|
|
|
6614
6614
|
import: "./build/react.mjs",
|
|
6615
6615
|
require: "./build/react.cjs"
|
|
6616
6616
|
},
|
|
6617
|
+
"./react-client": {
|
|
6618
|
+
types: "./build/react/client.d.ts",
|
|
6619
|
+
import: "./build/react/client.mjs",
|
|
6620
|
+
require: "./build/react/client.cjs"
|
|
6621
|
+
},
|
|
6617
6622
|
"./react/client": {
|
|
6618
6623
|
types: "./build/react/client.d.ts",
|
|
6619
6624
|
import: "./build/react/client.mjs",
|
|
6620
6625
|
require: "./build/react/client.cjs"
|
|
6621
6626
|
},
|
|
6627
|
+
"./react-rsc": {
|
|
6628
|
+
types: "./build/react/rsc.d.ts",
|
|
6629
|
+
import: "./build/react/rsc.mjs",
|
|
6630
|
+
require: "./build/react/rsc.cjs"
|
|
6631
|
+
},
|
|
6622
6632
|
"./react/rsc": {
|
|
6623
6633
|
types: "./build/react/rsc.d.ts",
|
|
6624
6634
|
import: "./build/react/rsc.mjs",
|
|
6625
6635
|
require: "./build/react/rsc.cjs"
|
|
6626
6636
|
},
|
|
6637
|
+
"./react-router": {
|
|
6638
|
+
types: "./build/react/react-router.d.ts",
|
|
6639
|
+
import: "./build/react/react-router.mjs",
|
|
6640
|
+
require: "./build/react/react-router.cjs"
|
|
6641
|
+
},
|
|
6627
6642
|
"./react/react-router": {
|
|
6628
6643
|
types: "./build/react/react-router.d.ts",
|
|
6629
6644
|
import: "./build/react/react-router.mjs",
|
|
@@ -6786,7 +6801,8 @@ var package_default = {
|
|
|
6786
6801
|
},
|
|
6787
6802
|
engines: {
|
|
6788
6803
|
node: ">=18"
|
|
6789
|
-
}
|
|
6804
|
+
},
|
|
6805
|
+
packageManager: "pnpm@9.12.3"
|
|
6790
6806
|
};
|
|
6791
6807
|
|
|
6792
6808
|
// src/cli/cmd/run/index.ts
|