lingo.dev 0.87.9 → 0.87.10
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 +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 +1 -1
package/build/cli.cjs
CHANGED
|
@@ -3131,7 +3131,7 @@ function extractCodePlaceholders(content) {
|
|
|
3131
3131
|
for (const match of codeBlockMatches) {
|
|
3132
3132
|
const codeBlock = match[0];
|
|
3133
3133
|
const codeBlockHash = md5(codeBlock);
|
|
3134
|
-
const placeholder = `---
|
|
3134
|
+
const placeholder = `---CODE-PLACEHOLDER-${codeBlockHash}---`;
|
|
3135
3135
|
codePlaceholders[placeholder] = codeBlock;
|
|
3136
3136
|
const replacement = codeBlock.trim().startsWith(">") ? `> ${placeholder}` : `${placeholder}`;
|
|
3137
3137
|
finalContent = finalContent.replace(codeBlock, replacement);
|
|
@@ -3140,7 +3140,7 @@ function extractCodePlaceholders(content) {
|
|
|
3140
3140
|
for (const match of inlineCodeMatches) {
|
|
3141
3141
|
const inlineCode = match[0];
|
|
3142
3142
|
const inlineCodeHash = md5(inlineCode);
|
|
3143
|
-
const placeholder = `---
|
|
3143
|
+
const placeholder = `---INLINE-CODE-PLACEHOLDER-${inlineCodeHash}---`;
|
|
3144
3144
|
codePlaceholders[placeholder] = inlineCode;
|
|
3145
3145
|
const replacement = placeholder;
|
|
3146
3146
|
finalContent = finalContent.replace(inlineCode, replacement);
|
|
@@ -5658,7 +5658,7 @@ function validateParams2(i18nConfig, flags) {
|
|
|
5658
5658
|
// package.json
|
|
5659
5659
|
var package_default = {
|
|
5660
5660
|
name: "lingo.dev",
|
|
5661
|
-
version: "0.87.
|
|
5661
|
+
version: "0.87.10",
|
|
5662
5662
|
description: "Lingo.dev CLI",
|
|
5663
5663
|
private: false,
|
|
5664
5664
|
publishConfig: {
|