@speedkit/cli 4.6.0 → 4.8.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
|
+
# [4.8.0](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v4.7.0...v4.8.0) (2026-06-02)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **onboarding:** add activeSites placeholder to SpeedKit config template ([0310034](https://gitlab.orestes.info/baqend/speed-kit-cli/commit/03100347a7daaf1ff39c6b1fa8ef097668a3d2eb))
|
|
7
|
+
|
|
8
|
+
# [4.7.0](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v4.6.0...v4.7.0) (2026-06-02)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* **customer-config:** improve add2cart disabling ([7d20650](https://gitlab.orestes.info/baqend/speed-kit-cli/commit/7d206503e27919375f78b93876dfa48686aaf5b5))
|
|
14
|
+
|
|
1
15
|
# [4.6.0](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v4.5.0...v4.6.0) (2026-05-29)
|
|
2
16
|
|
|
3
17
|
|
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}}
|
|
@@ -99,11 +99,6 @@ html > body {
|
|
|
99
99
|
}
|
|
100
100
|
}
|
|
101
101
|
|
|
102
|
-
/* Prevent Add2Cart clicks: */
|
|
103
|
-
.dummy-add2cart-class {
|
|
104
|
-
pointer-events: none !important;
|
|
105
|
-
}
|
|
106
|
-
|
|
107
102
|
/* Skeleton loading style: */
|
|
108
103
|
.dummy-add2cart-class,
|
|
109
104
|
.dummy-skeleton-container-class {
|
|
@@ -133,4 +128,11 @@ html > body {
|
|
|
133
128
|
mask-image: linear-gradient(#000, #000), linear-gradient(#000, #000), linear-gradient(#000, #000);
|
|
134
129
|
mask-repeat: no-repeat;
|
|
135
130
|
}
|
|
131
|
+
|
|
132
|
+
/* Disable Add2Cart: */
|
|
133
|
+
.dummy-add2cart-class {
|
|
134
|
+
pointer-events: none !important;
|
|
135
|
+
opacity: 0.5 !important;
|
|
136
|
+
filter: grayscale(1) !important;
|
|
137
|
+
}
|
|
136
138
|
}
|
package/oclif.manifest.json
CHANGED