tt-help-cli-ycl 1.3.22 → 1.3.23

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/lib/args.js +5 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tt-help-cli-ycl",
3
- "version": "1.3.22",
3
+ "version": "1.3.23",
4
4
  "description": "TikTok user & video data scraper - extract ttSeller, verified, locationCreated from HTML source",
5
5
  "type": "module",
6
6
  "bin": {
package/src/lib/args.js CHANGED
@@ -157,8 +157,8 @@ function parseExploreArgs(args) {
157
157
  let exploreMaxComments = 10;
158
158
  let exploreMaxGuess = 0;
159
159
  let exploreEnableFollow = true;
160
- let exploreMaxFollowing = 5;
161
- let exploreMaxFollowers = 5;
160
+ let exploreMaxFollowing = 50;
161
+ let exploreMaxFollowers = 50;
162
162
  let exploreLocation = 'PL,NL,BE,DE,FR,IT,ES,IE';
163
163
  let exploreMaxUsers = 0;
164
164
  let explorePort = null;
@@ -184,9 +184,9 @@ function parseExploreArgs(args) {
184
184
  } else if (arg === '--disable-follow') {
185
185
  exploreEnableFollow = false;
186
186
  } else if (arg === '--max-following') {
187
- exploreMaxFollowing = parseInt(args[++i]) || 5;
188
- } else if (arg === '--max-followers') {
189
- exploreMaxFollowers = parseInt(args[++i]) || 5;
187
+ exploreMaxFollowing = parseInt(args[++i]) || 50;
188
+
189
+ exploreMaxFollowers = parseInt(args[++i]) || 50;
190
190
  } else if (arg === '--max-users') {
191
191
  exploreMaxUsers = parseInt(args[++i]) || 0;
192
192
  } else if (arg === '--port') {