@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
|
@@ -127,12 +127,19 @@ const config = {
|
|
|
127
127
|
{{else}}
|
|
128
128
|
delayScriptPath: "/speed-kit-dom-ready.js",
|
|
129
129
|
{{/if}}
|
|
130
|
-
executeDeploymentDetection:
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
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
|
-
{
|
|
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
|
-
|
|
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
|
{
|
package/oclif.manifest.json
CHANGED