@speedkit/cli 3.26.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,10 @@
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
+
1
8
  # [3.26.0](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v3.25.0...v3.26.0) (2026-02-10)
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/3.26.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}}
@@ -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.26.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.26.0",
4
+ "version": "3.27.0",
5
5
  "author": {
6
6
  "name": "Baqend.com",
7
7
  "email": "info@baqend.com"