@speedkit/cli 4.7.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,10 @@
|
|
|
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
|
+
|
|
1
8
|
# [4.7.0](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v4.6.0...v4.7.0) (2026-06-02)
|
|
2
9
|
|
|
3
10
|
|
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}}
|
package/oclif.manifest.json
CHANGED