@speedkit/cli 3.25.0 → 3.27.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,17 @@
1
+ # [3.27.0](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v3.26.0...v3.27.0) (2026-02-17)
2
+
3
+
4
+ ### Features
5
+
6
+ * **customer-config:** declare click and host tracking plugin as default for pocs ([7136df1](https://gitlab.orestes.info/baqend/speed-kit-cli/commit/7136df107b95f79e3f0e2b41083b6fc42e1fb0ec))
7
+
8
+ # [3.26.0](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v3.25.0...v3.26.0) (2026-02-10)
9
+
10
+
11
+ ### Features
12
+
13
+ * **customer-config:** add main domain to ssr allowlist by default ([41f5b96](https://gitlab.orestes.info/baqend/speed-kit-cli/commit/41f5b96c3a32fb9a2299a9e7b587c493fba08086))
14
+
1
15
  # [3.25.0](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v3.24.1...v3.25.0) (2026-02-09)
2
16
 
3
17
 
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/3.25.0 linux-x64 node-v20.20.0
24
+ @speedkit/cli/3.27.0 linux-x64 node-v20.20.0
25
25
  $ sk --help [COMMAND]
26
26
  USAGE
27
27
  $ sk COMMAND
@@ -127,12 +127,19 @@ const config = {
127
127
  {{else}}
128
128
  delayScriptPath: "/speed-kit-dom-ready.js",
129
129
  {{/if}}
130
- executeDeploymentDetection: {
131
- // execute deployment detection scoped to locale subroutes:
132
- // scope: true,
133
- // domains with unhashed assets to cover with content hash comparison:
134
- // compareContentHashes: ['<domain>'],
135
- },
130
+ executeDeploymentDetection: true,
131
+
132
+ // Advanced configuration example:
133
+ /*
134
+ executeDeploymentDetection: {
135
+ // Execute deployment detection scoped to locale subroutes
136
+ scope: true,
137
+
138
+ // Domains with unhashed assets to validate via content hash comparison
139
+ compareContentHashes: ['<domain>'],
140
+ }
141
+ */
142
+
136
143
  {{#if removeLazyLoading}}
137
144
  lazyLoadList,
138
145
  {{/if}}
@@ -171,8 +178,16 @@ const config = {
171
178
  ],
172
179
  rules: {
173
180
  url: [
174
- // additional domains for the page to work need to be added here (main domain is already added)
175
- '<scripts-domain.com>',
181
+ // Asset Sub-Paths on Main Domains:
182
+ // TODO: identify and declare specific asset sub-paths instead of putting entire domains on the allowlist
183
+ // (e.g. www.domain.de/media/css instead of www.domain.de)
184
+ "{{production.host}}",
185
+ {{#if staging.host}}
186
+ "{{staging.host}}",
187
+ {{/if}}
188
+
189
+ // Additional Asset Domains:
190
+ // '<domain>',
176
191
  ],
177
192
  resourceType: [
178
193
  // only resource types listed here will be fetched
@@ -2,14 +2,16 @@ import { BaseBundle } from 'rum/BaseBundle';
2
2
  {{#if hasSoftNavigations}}
3
3
  import { SpaBundle } from 'rum/SpaBundle';
4
4
  {{/if}}
5
+
5
6
  {{#if useGATracking}}
6
7
  import { GAEcommerceTrackingPlugin } from 'rum/GAEcommerceTrackingPlugin';
7
8
  {{/if}}
8
- {{#if isPOV}}
9
+ import { ClickPlugin } from "rum/ClickPlugin";
9
10
  import { HostTrackingPlugin } from "rum/HostTrackingPlugin";
11
+ {{#if isPOV}}
10
12
  import { UserFrictionPlugin } from "rum/UserFrictionPlugin";
11
- import { ClickPlugin } from "rum/ClickPlugin";
12
13
  {{/if}}
14
+
13
15
  import { PredictivePreloading } from 'predictive-preloading/predictivePreloading';
14
16
 
15
17
  !function() {
@@ -56,10 +58,10 @@ import { PredictivePreloading } from 'predictive-preloading/predictivePreloading
56
58
  {{/if}}
57
59
  }),
58
60
  {{/if}}
59
- {{#if isPOV}}
61
+ new ClickPlugin(),
60
62
  new HostTrackingPlugin(),
63
+ {{#if isPOV}}
61
64
  new UserFrictionPlugin(),
62
- new ClickPlugin(),
63
65
  {{/if}}
64
66
  {{#if isShopify}}
65
67
  {
@@ -731,5 +731,5 @@
731
731
  ]
732
732
  }
733
733
  },
734
- "version": "3.25.0"
734
+ "version": "3.27.0"
735
735
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@speedkit/cli",
3
3
  "description": "Speed Kit CLI",
4
- "version": "3.25.0",
4
+ "version": "3.27.0",
5
5
  "author": {
6
6
  "name": "Baqend.com",
7
7
  "email": "info@baqend.com"