@speedkit/cli 2.80.0 → 2.81.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
|
+
# [2.81.0](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v2.80.0...v2.81.0) (2025-02-25)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **wizard:** handle different use-cases of PredictivePreloading library ([3c6f10e](https://gitlab.orestes.info/baqend/speed-kit-cli/commit/3c6f10ebb74bdc5efed8872c9b3483bedd2851f0))
|
|
7
|
+
|
|
1
8
|
# [2.80.0](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v2.79.0...v2.80.0) (2025-02-19)
|
|
2
9
|
|
|
3
10
|
|
package/README.md
CHANGED
|
@@ -617,7 +617,12 @@ import { PredictivePreloading } from 'predictive-preloading/predictivePreloading
|
|
|
617
617
|
}
|
|
618
618
|
{{/if}}
|
|
619
619
|
|
|
620
|
+
{{#if hasSoftNavigations}}
|
|
620
621
|
new PredictivePreloading({
|
|
621
|
-
// TODO: configure according to the needs of the customer
|
|
622
|
+
// TODO: configure according to the needs of the customer e.g. preload API-calls, soft-nav to hard-nav conversion...
|
|
622
623
|
});
|
|
624
|
+
{{else}}
|
|
625
|
+
// TODO: check if prerendering needs to be scoped to certain pages
|
|
626
|
+
new PredictivePreloading({ prerender: true });
|
|
627
|
+
{{/if}}
|
|
623
628
|
}();
|
package/oclif.manifest.json
CHANGED