apify-cli 0.13.1-beta.2 → 0.13.1-beta.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/package.json +1 -1
- package/src/commands/create.js +2 -0
package/package.json
CHANGED
package/src/commands/create.js
CHANGED
|
@@ -51,6 +51,8 @@ class CreateCommand extends ApifyCommand {
|
|
|
51
51
|
message: 'Please select the template for your new actor',
|
|
52
52
|
default: choices[0],
|
|
53
53
|
choices,
|
|
54
|
+
loop: false,
|
|
55
|
+
pageSize: 8, // Due to the answers wrapping, the prompt looks best if the `pageSize` is a multiple of 2
|
|
54
56
|
}]);
|
|
55
57
|
templateName = answer.template;
|
|
56
58
|
}
|