@speedkit/cli 4.7.0 → 4.9.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 +16 -0
- package/README.md +1 -1
- package/dist/services/customer-config/templates/config_SpeedKit.js.hbs +10 -0
- package/dist/services/customer-config/templates/config_dynamicBlocks.es6.hbs +1 -0
- package/dist/services/customer-config/templates/config_dynamicStyles.css.hbs +1 -2
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
# [4.9.0](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v4.8.0...v4.9.0) (2026-06-13)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **onboarding:** add link[rel="alternate"] as default dynamic block entry ([51f7252](https://gitlab.orestes.info/baqend/speed-kit-cli/commit/51f7252ec06862decdeffbdf55d7ee9647010023))
|
|
7
|
+
* **onboarding:** replace opacity with filter blend for disabled add2cart style ([c5cfddd](https://gitlab.orestes.info/baqend/speed-kit-cli/commit/c5cfdddda57903c11b2ba7eac132b641df100b2d))
|
|
8
|
+
* **onboarding:** scope alternate dynamic block to hreflang with removeIfMissing/appendTo ([10a8db7](https://gitlab.orestes.info/baqend/speed-kit-cli/commit/10a8db79e2a2dfa877e8d44b8b6682e70793553c))
|
|
9
|
+
|
|
10
|
+
# [4.8.0](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v4.7.0...v4.8.0) (2026-06-02)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* **onboarding:** add activeSites placeholder to SpeedKit config template ([0310034](https://gitlab.orestes.info/baqend/speed-kit-cli/commit/03100347a7daaf1ff39c6b1fa8ef097668a3d2eb))
|
|
16
|
+
|
|
1
17
|
# [4.7.0](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v4.6.0...v4.7.0) (2026-06-02)
|
|
2
18
|
|
|
3
19
|
|
package/README.md
CHANGED
|
@@ -154,6 +154,16 @@ import { ShopifyPlugin } from "speed-kit-config/ShopifyPlugin";
|
|
|
154
154
|
],
|
|
155
155
|
},
|
|
156
156
|
],
|
|
157
|
+
// Pages that aren't enabled themselves, but are allowed to trigger soft-to-hard
|
|
158
|
+
// navigations and preloading/prerendering for enabled pages.
|
|
159
|
+
activeSites: [
|
|
160
|
+
{
|
|
161
|
+
pathname: [
|
|
162
|
+
// TODO: adjust/replace or remove if not needed
|
|
163
|
+
/\/search/i, // e.g. search results
|
|
164
|
+
],
|
|
165
|
+
},
|
|
166
|
+
],
|
|
157
167
|
whitelist: [
|
|
158
168
|
{
|
|
159
169
|
{{#if isPlentymarkets}}
|
|
@@ -95,6 +95,7 @@
|
|
|
95
95
|
|
|
96
96
|
// default entries
|
|
97
97
|
{ selector: 'link[rel="canonical"]'},
|
|
98
|
+
{ selector: 'link[rel="alternate"][hreflang]', idAttribute: "hreflang", removeIfMissing: true, appendTo: "head"},
|
|
98
99
|
{ selector: "meta[name]", idAttribute: "name"},
|
|
99
100
|
{ selector: 'meta[property]', idAttribute: "property"},
|
|
100
101
|
{ selector: 'script[type="application/ld+json"]'},
|
|
@@ -132,7 +132,6 @@ html > body {
|
|
|
132
132
|
/* Disable Add2Cart: */
|
|
133
133
|
.dummy-add2cart-class {
|
|
134
134
|
pointer-events: none !important;
|
|
135
|
-
|
|
136
|
-
filter: grayscale(1) !important;
|
|
135
|
+
filter: grayscale(1) contrast(0.333) brightness(1.5) !important; /* = grayscale + blending 50% with white */
|
|
137
136
|
}
|
|
138
137
|
}
|
package/oclif.manifest.json
CHANGED