@speedkit/cli 3.6.2 → 3.6.3
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.6.3](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v3.6.2...v3.6.3) (2025-09-30)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **onboarding:** test the variations using lowercase as we changed them to lowercase ([0c19e87](https://gitlab.orestes.info/baqend/speed-kit-cli/commit/0c19e8719ec0d32caa085e9d739ac844e18c9447))
|
|
7
|
+
|
|
1
8
|
## [3.6.2](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v3.6.1...v3.6.2) (2025-09-24)
|
|
2
9
|
|
|
3
10
|
|
package/README.md
CHANGED
|
@@ -36,13 +36,13 @@ class Crawler {
|
|
|
36
36
|
this.cli.writeError(JSON.stringify(fetchResponse.errorObj));
|
|
37
37
|
}
|
|
38
38
|
setDefaultUserAgent(variation) {
|
|
39
|
-
if (variation.includes("
|
|
39
|
+
if (variation.includes("mobile")) {
|
|
40
40
|
return onboarding_model_1.USER_AGENT.MOBILE;
|
|
41
41
|
}
|
|
42
|
-
if (variation.includes("
|
|
42
|
+
if (variation.includes("tablet")) {
|
|
43
43
|
return onboarding_model_1.USER_AGENT.TABLET;
|
|
44
44
|
}
|
|
45
|
-
if (variation.includes("
|
|
45
|
+
if (variation.includes("tv")) {
|
|
46
46
|
return onboarding_model_1.USER_AGENT.TV;
|
|
47
47
|
}
|
|
48
48
|
return onboarding_model_1.USER_AGENT.DESKTOP;
|
package/oclif.manifest.json
CHANGED