@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
|
@@ -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}}
|
|
@@ -171,8 +178,16 @@ const config = {
|
|
|
171
178
|
],
|
|
172
179
|
rules: {
|
|
173
180
|
url: [
|
|
174
|
-
//
|
|
175
|
-
|
|
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
|
-
{
|
|
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