@speedkit/cli 2.93.0 → 2.95.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
|
+
# [2.95.0](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v2.94.0...v2.95.0) (2025-08-07)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **onboarding:** html install template ([c4caf34](https://gitlab.orestes.info/baqend/speed-kit-cli/commit/c4caf34539ae018c04748902d9d4adffde2589e5))
|
|
7
|
+
|
|
8
|
+
# [2.94.0](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v2.93.0...v2.94.0) (2025-07-29)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* **customer-config:** optimise block order of query parameter stripping ([fdf15db](https://gitlab.orestes.info/baqend/speed-kit-cli/commit/fdf15db2646cf152cb3a30d2f3958974538ea02c))
|
|
14
|
+
|
|
1
15
|
# [2.93.0](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v2.92.1...v2.93.0) (2025-07-29)
|
|
2
16
|
|
|
3
17
|
|
package/README.md
CHANGED
|
@@ -304,27 +304,6 @@
|
|
|
304
304
|
],
|
|
305
305
|
stripQueryParams: [{
|
|
306
306
|
params: [
|
|
307
|
-
// TODO: extend during query param analysis
|
|
308
|
-
{{#if isShopify}}
|
|
309
|
-
|
|
310
|
-
// Shopify specific:
|
|
311
|
-
"_fid",
|
|
312
|
-
"_pos",
|
|
313
|
-
"_psq",
|
|
314
|
-
"_sid",
|
|
315
|
-
"_ss",
|
|
316
|
-
"_v",
|
|
317
|
-
/^pr_/i, // Product Recommendation
|
|
318
|
-
{{/if}}
|
|
319
|
-
{{#if isOxid}}
|
|
320
|
-
|
|
321
|
-
// OXID specific:
|
|
322
|
-
"cnid",
|
|
323
|
-
"ecmId",
|
|
324
|
-
"ecmUid",
|
|
325
|
-
"force_sid",
|
|
326
|
-
{{/if}}
|
|
327
|
-
|
|
328
307
|
// Default:
|
|
329
308
|
"_ga", // Google Analytics User ID (Universal Analytics)
|
|
330
309
|
"_gl", // Google Analytics User ID (GA 4+)
|
|
@@ -393,6 +372,28 @@
|
|
|
393
372
|
/^vm(st|track)_id$/,
|
|
394
373
|
/^wg(u|expiry)$/, // Webgains Affiliate Network
|
|
395
374
|
/^wt_(mc|az|ref|t)$/, // Webtrekk/Mapp Intelligence
|
|
375
|
+
{{#if isShopify}}
|
|
376
|
+
|
|
377
|
+
// Shopify specific:
|
|
378
|
+
"_fid",
|
|
379
|
+
"_pos",
|
|
380
|
+
"_psq",
|
|
381
|
+
"_sid",
|
|
382
|
+
"_ss",
|
|
383
|
+
"_v",
|
|
384
|
+
/^pr_/i, // Product Recommendation
|
|
385
|
+
{{/if}}
|
|
386
|
+
{{#if isOxid}}
|
|
387
|
+
|
|
388
|
+
// OXID specific:
|
|
389
|
+
"cnid",
|
|
390
|
+
"ecmId",
|
|
391
|
+
"ecmUid",
|
|
392
|
+
"force_sid",
|
|
393
|
+
{{/if}}
|
|
394
|
+
|
|
395
|
+
// Site-specific:
|
|
396
|
+
// TODO: extend or remove during query param analysis
|
|
396
397
|
],
|
|
397
398
|
}],
|
|
398
399
|
};
|
|
@@ -222,8 +222,11 @@ aside.loader:not(.stop)::after {
|
|
|
222
222
|
const step4 = document.querySelector('[data-step="4"]')
|
|
223
223
|
step4.classList.add('loading')
|
|
224
224
|
|
|
225
|
-
|
|
226
|
-
|
|
225
|
+
try {
|
|
226
|
+
SpeedKit.preload(["{{{domain}}}"])
|
|
227
|
+
} catch (e) {
|
|
228
|
+
console.error(e);
|
|
229
|
+
}
|
|
227
230
|
|
|
228
231
|
location.href = new URL(location.href).searchParams.get('url') || '/';
|
|
229
232
|
|
package/oclif.manifest.json
CHANGED