@speedkit/cli 3.5.0 → 3.5.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
+ ## [3.5.1](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v3.5.0...v3.5.1) (2025-08-26)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **onboarding:** unknown version ([9a1e856](https://gitlab.orestes.info/baqend/speed-kit-cli/commit/9a1e856f50b24b7fab8e440f2e92ee2f66aa7c07))
7
+
1
8
  # [3.5.0](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v3.4.3...v3.5.0) (2025-08-20)
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/3.5.0 linux-x64 node-v20.19.4
24
+ @speedkit/cli/3.5.1 linux-x64 node-v20.19.4
25
25
  $ sk --help [COMMAND]
26
26
  USAGE
27
27
  $ sk COMMAND
@@ -4,7 +4,7 @@ export declare class ExecutableValidator {
4
4
  readonly userConfig: UserCliConfig;
5
5
  private cli;
6
6
  constructor(userConfig: UserCliConfig, cli: CliServiceInterface);
7
- validateOrInstall(): Promise<string>;
7
+ validateOrInstall(): Promise<string | undefined>;
8
8
  private getCurrentBrowserVersion;
9
9
  private getExecutablePathFromPuppeteer;
10
10
  private isValidBrowserExecutable;
@@ -38,7 +38,7 @@ export declare class BrowserContext {
38
38
  userAgent?: string;
39
39
  readonly browserArgs: string[];
40
40
  readonly chromePath: string;
41
- constructor(domain: string, browserVersionString: string, chromeFlags?: string[], userConfig?: UserCliConfig, userAgent?: string);
41
+ constructor(domain: string, browserVersionString?: string, chromeFlags?: string[], userConfig?: UserCliConfig, userAgent?: string);
42
42
  private isChromeBrowser;
43
43
  private getBrowserExtensionPath;
44
44
  getPuppeteerLaunchOptions(): Parameters<VanillaPuppeteer["launch"]>[0];
@@ -46,7 +46,7 @@ class BrowserContext {
46
46
  userAgent;
47
47
  browserArgs;
48
48
  chromePath;
49
- constructor(domain, browserVersionString, chromeFlags, userConfig, userAgent) {
49
+ constructor(domain, browserVersionString = "unknown", chromeFlags, userConfig, userAgent) {
50
50
  this.domain = domain;
51
51
  this.browserVersionString = browserVersionString;
52
52
  this.chromeFlags = chromeFlags;
@@ -732,5 +732,5 @@
732
732
  ]
733
733
  }
734
734
  },
735
- "version": "3.5.0"
735
+ "version": "3.5.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.5.0",
4
+ "version": "3.5.1",
5
5
  "author": {
6
6
  "name": "Baqend.com",
7
7
  "email": "info@baqend.com"