@speedkit/cli 2.57.0 → 2.57.1
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.57.1](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v2.57.0...v2.57.1) (2024-09-26)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* remove predictivePreload testLib ([145ff67](https://gitlab.orestes.info/baqend/speed-kit-cli/commit/145ff67c47f04e1e39839129b928e5fbc3ded0f9))
|
|
7
|
+
|
|
1
8
|
# [2.57.0](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v2.56.1...v2.57.0) (2024-09-17)
|
|
2
9
|
|
|
3
10
|
|
package/README.md
CHANGED
|
@@ -50,14 +50,20 @@ class SpeedKitInstallContext {
|
|
|
50
50
|
});
|
|
51
51
|
}
|
|
52
52
|
prepareConfigLoadHandler() {
|
|
53
|
-
|
|
53
|
+
return this.files
|
|
54
54
|
.getByName(files_1.INTEGRATION_FILES.CONFIG.LOAD_HANDLER)
|
|
55
55
|
.getContent();
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
//
|
|
60
|
-
return configFileContent
|
|
56
|
+
// todo reimplement debug package for local use
|
|
57
|
+
// if (
|
|
58
|
+
// !configFileContent.includes("predictive-preloading/predictivePreloading")
|
|
59
|
+
// ) {
|
|
60
|
+
// return configFileContent;
|
|
61
|
+
// }
|
|
62
|
+
// // automatically use debug package for sk onboarding
|
|
63
|
+
// return configFileContent.replace(
|
|
64
|
+
// "predictive-preloading/predictivePreloading",
|
|
65
|
+
// `import debugPreloading from "predictive-preloading/predictivePreloading.dev.js"`,
|
|
66
|
+
// );
|
|
61
67
|
}
|
|
62
68
|
getConfigSpeedKit() {
|
|
63
69
|
const configString = this.files
|
package/oclif.manifest.json
CHANGED