@speedkit/cli 2.49.2 → 2.50.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.50.0](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v2.49.2...v2.50.0) (2024-08-08)
2
+
3
+
4
+ ### Features
5
+
6
+ * **onboarding:** change pathToDebugPackage for PredictivePreloading ([510af56](https://gitlab.orestes.info/baqend/speed-kit-cli/commit/510af56367bb325e024596ba2869203c1d883219))
7
+
1
8
  ## [2.49.2](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v2.49.1...v2.49.2) (2024-08-02)
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.49.2 linux-x64 node-v20.16.0
24
+ @speedkit/cli/2.50.0 linux-x64 node-v20.16.0
25
25
  $ sk --help [COMMAND]
26
26
  USAGE
27
27
  $ sk COMMAND
@@ -53,11 +53,11 @@ class SpeedKitInstallContext {
53
53
  const configFileContent = this.files
54
54
  .getByName(files_1.INTEGRATION_FILES.CONFIG.LOAD_HANDLER)
55
55
  .getContent();
56
- if (!configFileContent.includes("predictive-preloading/predictivePreloading.min.js")) {
56
+ if (!configFileContent.includes("predictive-preloading/predictivePreloading")) {
57
57
  return configFileContent;
58
58
  }
59
59
  // automatically use debug package for sk onboarding
60
- return configFileContent.replace("predictive-preloading/predictivePreloading.min.js", "predictive-preloading/predictivePreloading.debug.min.js");
60
+ return configFileContent.replace("predictive-preloading/predictivePreloading", "predictive-preloading/predictivePreloading.dev.js");
61
61
  }
62
62
  getConfigSpeedKit() {
63
63
  const configString = this.files
@@ -712,5 +712,5 @@
712
712
  ]
713
713
  }
714
714
  },
715
- "version": "2.49.2"
715
+ "version": "2.50.0"
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.49.2",
4
+ "version": "2.50.0",
5
5
  "author": {
6
6
  "name": "Baqend.com",
7
7
  "email": "info@baqend.com"