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.
- package/package.json +1 -1
- package/src/lib/args.js +5 -5
package/package.json
CHANGED
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 =
|
|
161
|
-
let exploreMaxFollowers =
|
|
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]) ||
|
|
188
|
-
|
|
189
|
-
exploreMaxFollowers = parseInt(args[++i]) ||
|
|
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') {
|