lingo.dev 0.90.3 → 0.90.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/build/cli.cjs +2 -2
- package/build/cli.cjs.map +1 -1
- package/build/cli.mjs +2 -2
- package/build/cli.mjs.map +1 -1
- package/package.json +3 -3
package/build/cli.mjs
CHANGED
|
@@ -1460,7 +1460,7 @@ function createAndroidLoader() {
|
|
|
1460
1460
|
};
|
|
1461
1461
|
const processHtmlContent = (str) => {
|
|
1462
1462
|
if (typeof str !== "string") return { _: String(str) };
|
|
1463
|
-
const processedStr = str.replace(/'/g, "\\'");
|
|
1463
|
+
const processedStr = str.replace(/(?<!\\)'/g, "\\'");
|
|
1464
1464
|
return { _: processedStr };
|
|
1465
1465
|
};
|
|
1466
1466
|
for (const [key, value] of Object.entries(payload)) {
|
|
@@ -6066,7 +6066,7 @@ async function renderHero() {
|
|
|
6066
6066
|
// package.json
|
|
6067
6067
|
var package_default = {
|
|
6068
6068
|
name: "lingo.dev",
|
|
6069
|
-
version: "0.90.
|
|
6069
|
+
version: "0.90.4",
|
|
6070
6070
|
description: "Lingo.dev CLI",
|
|
6071
6071
|
private: false,
|
|
6072
6072
|
publishConfig: {
|