@speedkit/cli 3.1.0 → 3.1.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,11 @@
1
+ ## [3.1.1](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v3.1.0...v3.1.1) (2025-08-11)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **onboarding:** resolvepath correctly ([1249efb](https://gitlab.orestes.info/baqend/speed-kit-cli/commit/1249efb427b1b879f2fcde3b5155209530052000))
7
+ * **onboarding:** set correctPath for all useCases ([e445d29](https://gitlab.orestes.info/baqend/speed-kit-cli/commit/e445d29415c9e6ff63ecfb5be0b137e6f9cac903))
8
+
1
9
  # [3.1.0](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v3.0.0...v3.1.0) (2025-08-08)
2
10
 
3
11
 
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/3.1.0 linux-x64 node-v20.19.4
24
+ @speedkit/cli/3.1.1 linux-x64 node-v20.19.4
25
25
  $ sk --help [COMMAND]
26
26
  USAGE
27
27
  $ sk COMMAND
@@ -9,6 +9,7 @@ const node_child_process_1 = require("node:child_process");
9
9
  const safe_1 = require("../../helpers/safe");
10
10
  const application_error_1 = tslib_1.__importDefault(require("../error-handling/error/application-error"));
11
11
  const node_fs_1 = require("node:fs");
12
+ const node_path_1 = require("node:path");
12
13
  const DEFAULT_BROWSER_ARGS = [
13
14
  "--enable-features=Translate,NetworkService",
14
15
  "--no-first-run",
@@ -57,9 +58,9 @@ class BrowserContext {
57
58
  this.userAgent = userAgent;
58
59
  this.domain = domain;
59
60
  this.chromeFlags = chromeFlags || [];
60
- this.chromePath = userConfig.chromePath;
61
+ this.chromePath = (0, node_path_1.resolve)(userConfig.chromePath);
61
62
  const browserArguments = DEFAULT_BROWSER_ARGS;
62
- this.browserDetails = this.checkBrowserDetails(userConfig.chromePath);
63
+ this.browserDetails = this.checkBrowserDetails(this.chromePath);
63
64
  if (userConfig?.chromeUserProfilePath) {
64
65
  browserArguments.push(`--user-data-dir=${userConfig?.chromeUserProfilePath}`);
65
66
  }
@@ -732,5 +732,5 @@
732
732
  ]
733
733
  }
734
734
  },
735
- "version": "3.1.0"
735
+ "version": "3.1.1"
736
736
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@speedkit/cli",
3
3
  "description": "Speed Kit CLI",
4
- "version": "3.1.0",
4
+ "version": "3.1.1",
5
5
  "author": {
6
6
  "name": "Baqend.com",
7
7
  "email": "info@baqend.com"