mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-23 18:05:01 +02:00
Remove prompt from all commands
This commit is contained in:
@@ -32,7 +32,6 @@ module.exports = class DearLiberalsCommand extends Command {
|
||||
args: [
|
||||
{
|
||||
key: 'hashtag',
|
||||
prompt: 'What hashtag should be on Ben Shapiro\'s sign? No spaces or symbols.',
|
||||
type: 'string',
|
||||
max: 10,
|
||||
validate: hashtag => /^[A-Z0-9]+$/i.test(hashtag)
|
||||
@@ -40,7 +39,6 @@ module.exports = class DearLiberalsCommand extends Command {
|
||||
{
|
||||
key: 'blueText',
|
||||
label: 'blue text',
|
||||
prompt: 'What should the blue text be?',
|
||||
type: 'string',
|
||||
max: 42,
|
||||
parse: blueText => blueText.toUpperCase()
|
||||
@@ -48,7 +46,6 @@ module.exports = class DearLiberalsCommand extends Command {
|
||||
{
|
||||
key: 'redText',
|
||||
label: 'red text',
|
||||
prompt: 'What should the red text be?',
|
||||
type: 'string',
|
||||
max: 24,
|
||||
parse: redText => redText.toUpperCase()
|
||||
|
||||
Reference in New Issue
Block a user