@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 +8 -0
- package/README.md +1 -1
- package/dist/services/onboarding/onboarding-model.js +3 -2
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
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
|
@@ -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(
|
|
63
|
+
this.browserDetails = this.checkBrowserDetails(this.chromePath);
|
|
63
64
|
if (userConfig?.chromeUserProfilePath) {
|
|
64
65
|
browserArguments.push(`--user-data-dir=${userConfig?.chromeUserProfilePath}`);
|
|
65
66
|
}
|
package/oclif.manifest.json
CHANGED