@speedkit/cli 2.75.0 → 2.76.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/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [2.76.0](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v2.75.0...v2.76.0) (2025-01-22)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **wizard:** fix template for lambda server-side rendering arguments were wrong ([dc7b90e](https://gitlab.orestes.info/baqend/speed-kit-cli/commit/dc7b90ee93f4a1a0f06c02d7ca08a1e35044a181))
|
|
7
|
+
|
|
1
8
|
# [2.75.0](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v2.74.0...v2.75.0) (2025-01-15)
|
|
2
9
|
|
|
3
10
|
|
package/README.md
CHANGED
|
@@ -47,11 +47,11 @@
|
|
|
47
47
|
{{/if}}
|
|
48
48
|
{{/unless}}
|
|
49
49
|
const config = {
|
|
50
|
-
rejectHTML({db,
|
|
50
|
+
rejectHTML({db, {{#if addPreRendering}}document{{else}}html{{/if}}, variation, url, headers}) {
|
|
51
51
|
/* Use to configure guards to prevent e.g. error and captcha pages from being cached */
|
|
52
52
|
return false;
|
|
53
53
|
},
|
|
54
|
-
blacklistHTML({db,
|
|
54
|
+
blacklistHTML({db, {{#if addPreRendering}}document{{else}}html{{/if}}, variation, url, headers}) {
|
|
55
55
|
/* Use to configure guards to black-list e.g. specific page types */
|
|
56
56
|
{{#if addPreRendering}}
|
|
57
57
|
// dynamically blacklist unsupported variations as they are not covered in lambda
|
|
@@ -69,7 +69,7 @@ const config = {
|
|
|
69
69
|
{{/if}}
|
|
70
70
|
return false;
|
|
71
71
|
},
|
|
72
|
-
shouldTransform({db,
|
|
72
|
+
shouldTransform({db, {{#if addPreRendering}}document{{else}}html{{/if}}, variation, url, headers}) {
|
|
73
73
|
return true;
|
|
74
74
|
},
|
|
75
75
|
shouldDelayDom({db, {{#if addPreRendering}}document{{else}}html{{/if}}, variation, url, headers}) {
|
package/oclif.manifest.json
CHANGED