@griddo/cx 11.10.44 → 11.10.46-rc.0
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/commands/end-render.js +1 -1
- package/build/commands/end-render.js.map +2 -2
- package/build/commands/prepare-assets-directory.js +1 -1
- package/build/commands/prepare-assets-directory.js.map +2 -2
- package/build/commands/prepare-domains-render.js +1 -1
- package/build/commands/prepare-domains-render.js.map +2 -2
- package/build/commands/reset-render.js +1 -1
- package/build/commands/reset-render.js.map +2 -2
- package/build/commands/start-render.js +15 -15
- package/build/commands/start-render.js.map +2 -2
- package/build/commands/upload-search-content.js +10 -10
- package/build/commands/upload-search-content.js.map +2 -2
- package/build/index.js +3 -3
- package/exporter/services/llms.ts +0 -2
- package/exporter/ssg-adapters/gatsby/shared/sync-render.ts +0 -1
- package/package.json +3 -3
|
@@ -80,8 +80,6 @@ async function generateLLMs(domain: string): Promise<void> {
|
|
|
80
80
|
const griddoLLMsHeader = `llms.txt for the domain ${domain}
|
|
81
81
|
Generated: ${new Date().toISOString().replace("T", " ").slice(0, 19)}`;
|
|
82
82
|
|
|
83
|
-
console.log(template);
|
|
84
|
-
|
|
85
83
|
const finalContent = template
|
|
86
84
|
.replace(/\{\{\s*LLMS_HEADER\s*\}\}/g, `${griddoLLMsHeader}`)
|
|
87
85
|
.replace(/\{\{\s*LLMS_PAGE_LINKS\s*\}\}/g, `${pageLinks.join("\n")}`);
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@griddo/cx",
|
|
3
3
|
"description": "Griddo SSG based on Gatsby",
|
|
4
|
-
"version": "11.10.
|
|
4
|
+
"version": "11.10.46-rc.0",
|
|
5
5
|
"authors": [
|
|
6
6
|
"Hisco <francis.vega@griddo.io>"
|
|
7
7
|
],
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
63
63
|
"@biomejs/biome": "2.3.4",
|
|
64
|
-
"@griddo/core": "11.10.
|
|
64
|
+
"@griddo/core": "11.10.46-rc.0",
|
|
65
65
|
"@types/node": "20.19.4",
|
|
66
66
|
"@typescript/native-preview": "7.0.0-dev.20260108.1",
|
|
67
67
|
"cheerio": "1.1.2",
|
|
@@ -94,5 +94,5 @@
|
|
|
94
94
|
"publishConfig": {
|
|
95
95
|
"access": "public"
|
|
96
96
|
},
|
|
97
|
-
"gitHead": "
|
|
97
|
+
"gitHead": "333efc7d155c7a8eddf01ee85fc729f7dd08891c"
|
|
98
98
|
}
|