@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
@@ -21,7 +21,7 @@ $ npm install -g @speedkit/cli
21
21
  $ sk COMMAND
22
22
  running command...
23
23
  $ sk (--version)
24
- @speedkit/cli/2.57.0 linux-x64 node-v20.17.0
24
+ @speedkit/cli/2.57.1 linux-x64 node-v20.17.0
25
25
  $ sk --help [COMMAND]
26
26
  USAGE
27
27
  $ sk COMMAND
@@ -50,14 +50,20 @@ class SpeedKitInstallContext {
50
50
  });
51
51
  }
52
52
  prepareConfigLoadHandler() {
53
- const configFileContent = this.files
53
+ return this.files
54
54
  .getByName(files_1.INTEGRATION_FILES.CONFIG.LOAD_HANDLER)
55
55
  .getContent();
56
- if (!configFileContent.includes("predictive-preloading/predictivePreloading")) {
57
- return configFileContent;
58
- }
59
- // automatically use debug package for sk onboarding
60
- return configFileContent.replace("predictive-preloading/predictivePreloading", "predictive-preloading/predictivePreloading.dev.js");
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
@@ -712,5 +712,5 @@
712
712
  ]
713
713
  }
714
714
  },
715
- "version": "2.57.0"
715
+ "version": "2.57.1"
716
716
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@speedkit/cli",
3
3
  "description": "Speed Kit CLI",
4
- "version": "2.57.0",
4
+ "version": "2.57.1",
5
5
  "author": {
6
6
  "name": "Baqend.com",
7
7
  "email": "info@baqend.com"