@griddo/cx 11.1.2 → 11.1.3
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/end-render.js.map +2 -2
- package/build/index.js +21 -21
- package/build/index.js.map +2 -2
- package/build/reset-render.js.map +1 -1
- package/build/run-start-render.js +15 -15
- package/build/run-start-render.js.map +2 -2
- package/build/scripts/end-render.d.ts +1 -0
- package/build/start-render.js +15 -15
- package/build/start-render.js.map +2 -2
- package/build/types/api.d.ts +2 -0
- package/build/upload-search-content.js.map +1 -1
- package/exporter/scripts/end-render.ts +1 -0
- package/exporter/services/store.ts +4 -1
- package/exporter/types/api.ts +2 -0
- package/exporter/utils/sites.ts +1 -0
- package/package.json +3 -3
|
@@ -121,6 +121,7 @@ async function createStore(domain: string) {
|
|
|
121
121
|
siteHash,
|
|
122
122
|
unpublishHashes,
|
|
123
123
|
publishHashes: [],
|
|
124
|
+
publishPagesIds: [],
|
|
124
125
|
};
|
|
125
126
|
|
|
126
127
|
const NavService = new NavigationService();
|
|
@@ -278,9 +279,11 @@ async function createStore(domain: string) {
|
|
|
278
279
|
];
|
|
279
280
|
}
|
|
280
281
|
|
|
281
|
-
// Upload only the valid pages hashes of pages that has
|
|
282
|
+
// Upload only the valid pages hashes or ids of pages that has
|
|
283
|
+
// been changed or created.
|
|
282
284
|
if (page.hash !== null) {
|
|
283
285
|
buildProcessData[siteId].publishHashes.push(page.hash);
|
|
286
|
+
buildProcessData[siteId].publishPagesIds.push(page.id);
|
|
284
287
|
}
|
|
285
288
|
|
|
286
289
|
// Save build data to store
|
package/exporter/types/api.ts
CHANGED
package/exporter/utils/sites.ts
CHANGED
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.1.
|
|
4
|
+
"version": "11.1.3",
|
|
5
5
|
"authors": [
|
|
6
6
|
"Álvaro Sánchez' <alvaro.sanches@secuoyas.com>",
|
|
7
7
|
"Diego M. Béjar <diego.bejar@secuoyas.com>",
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"@babel/preset-env": "7.26.0",
|
|
61
61
|
"@babel/preset-react": "7.26.3",
|
|
62
62
|
"@babel/preset-typescript": "7.26.0",
|
|
63
|
-
"@griddo/core": "11.1.
|
|
63
|
+
"@griddo/core": "11.1.3",
|
|
64
64
|
"@svgr/webpack": "5.5.0",
|
|
65
65
|
"axios": "1.7.9",
|
|
66
66
|
"babel-loader": "9.2.1",
|
|
@@ -126,5 +126,5 @@
|
|
|
126
126
|
"publishConfig": {
|
|
127
127
|
"access": "public"
|
|
128
128
|
},
|
|
129
|
-
"gitHead": "
|
|
129
|
+
"gitHead": "5b505e1cd245ac9c2d566bd6efa533f9f910c423"
|
|
130
130
|
}
|