@speedkit/cli 4.8.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
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
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
|
+
|
|
1
10
|
# [4.8.0](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v4.7.0...v4.8.0) (2026-06-02)
|
|
2
11
|
|
|
3
12
|
|
package/README.md
CHANGED
|
@@ -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