@speedkit/cli 2.44.0 → 2.46.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.46.0](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v2.45.0...v2.46.0) (2024-07-22)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **configWizzard:** remove font,style,script from initial whiteList ([351ca4d](https://gitlab.orestes.info/baqend/speed-kit-cli/commit/351ca4d6cb3bddc0baffb99567400e4d6f445fbb))
|
|
7
|
+
|
|
8
|
+
# [2.45.0](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v2.44.0...v2.45.0) (2024-07-22)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* **config-wizard:** add new "gb_clk" Click tracking param to the strip query param list ([bed243c](https://gitlab.orestes.info/baqend/speed-kit-cli/commit/bed243ca47e4326cccf96c38e87e4febace7d28e))
|
|
14
|
+
|
|
1
15
|
# [2.44.0](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v2.43.1...v2.44.0) (2024-07-19)
|
|
2
16
|
|
|
3
17
|
|
package/README.md
CHANGED
|
@@ -107,17 +107,8 @@
|
|
|
107
107
|
{{/if}}
|
|
108
108
|
contentType: [
|
|
109
109
|
'navigate',
|
|
110
|
-
'style',
|
|
111
|
-
'font',
|
|
112
110
|
{{#if activateImageOptimisation}}
|
|
113
111
|
'image',
|
|
114
|
-
{{/if}}
|
|
115
|
-
{{#if isShopify}}
|
|
116
|
-
|
|
117
|
-
// Shopify specific:
|
|
118
|
-
// don't enable 'script' because XHR Requests on PDPs, that do not match the navigate content type, are served as scripts
|
|
119
|
-
{{else}}
|
|
120
|
-
'script',
|
|
121
112
|
{{/if}}
|
|
122
113
|
],
|
|
123
114
|
},
|
|
@@ -129,17 +120,6 @@
|
|
|
129
120
|
contentType: ["script", "style", "font"],
|
|
130
121
|
},
|
|
131
122
|
{{#if isShopify}}
|
|
132
|
-
|
|
133
|
-
// Shopify specific:
|
|
134
|
-
{
|
|
135
|
-
host: [
|
|
136
|
-
"cdn.shopify.com",
|
|
137
|
-
],
|
|
138
|
-
// Image optimization is normally not activated for the Shopify CDN host
|
|
139
|
-
// – unless this has been explicitly requested!
|
|
140
|
-
contentType: ["script", "style", "font"],
|
|
141
|
-
},
|
|
142
|
-
|
|
143
123
|
// Shopify specific:
|
|
144
124
|
{
|
|
145
125
|
url: [
|
|
@@ -333,6 +313,7 @@
|
|
|
333
313
|
"ttclid", // TikTok Click ID
|
|
334
314
|
"yclid", // Yandex Click ID
|
|
335
315
|
"zanpid", // AWIN (former Zanox Affiliate Network)
|
|
316
|
+
"gb_clk", //Click tracking
|
|
336
317
|
/^[gw]braid$/, // Google's iOS web-to-app campaign measurement
|
|
337
318
|
/^campaign(_id)?$/,
|
|
338
319
|
/^cq_/,
|
package/oclif.manifest.json
CHANGED