@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
@@ -21,7 +21,7 @@ $ npm install -g @speedkit/cli
21
21
  $ sk COMMAND
22
22
  running command...
23
23
  $ sk (--version)
24
- @speedkit/cli/2.75.0 linux-x64 node-v20.18.1
24
+ @speedkit/cli/2.76.0 linux-x64 node-v20.18.1
25
25
  $ sk --help [COMMAND]
26
26
  USAGE
27
27
  $ sk COMMAND
@@ -47,11 +47,11 @@
47
47
  {{/if}}
48
48
  {{/unless}}
49
49
  const config = {
50
- rejectHTML({db, html, {{#if addPreRendering}}document, {{/if}}variation, url, headers}) {
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, html, {{#if addPreRendering}}document, {{/if}}variation, url, headers}) {
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, html, {{#if addPreRendering}}document, {{/if}}variation, url, headers}) {
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}) {
@@ -712,5 +712,5 @@
712
712
  ]
713
713
  }
714
714
  },
715
- "version": "2.75.0"
715
+ "version": "2.76.0"
716
716
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@speedkit/cli",
3
3
  "description": "Speed Kit CLI",
4
- "version": "2.75.0",
4
+ "version": "2.76.0",
5
5
  "author": {
6
6
  "name": "Baqend.com",
7
7
  "email": "info@baqend.com"