Replace quickstart-app-auth with updated docs

Signed-off-by: Tim Hansen <timbonicus@gmail.com>
This commit is contained in:
Tim Hansen
2021-05-24 12:45:33 -06:00
parent 0ed1f45660
commit 8b62311cbb
9 changed files with 10 additions and 381 deletions
@@ -205,7 +205,7 @@ export default async (cmd: Command) => {
return chalk.red('Please enter an ID for the plugin');
} else if (!/^[a-z0-9]+(-[a-z0-9]+)*$/.test(value)) {
return chalk.red(
'Plugin IDs must be kebab-cased and contain only letters, digits, and dashes.',
'Plugin IDs must be lowercase and contain only letters, digits, and dashes.',
);
}
return true;
@@ -189,7 +189,7 @@ export default async () => {
return chalk.red('Please enter an ID for the plugin');
} else if (!/^[a-z0-9]+(-[a-z0-9]+)*$/.test(value)) {
return chalk.red(
'Plugin IDs must be kebab-cased and contain only letters, digits and dashes.',
'Plugin IDs must be lowercase and contain only letters, digits and dashes.',
);
}
return true;