🎨 Optimizing the user prompts during command usage

This commit is contained in:
Tw93
2023-03-02 17:47:19 +08:00
parent fe754f663e
commit 129893c539
6 changed files with 9 additions and 9 deletions

View File

@@ -11,7 +11,7 @@ export default async function handleOptions(options: PakeCliOptions, url: string
};
if (!appOptions.name) {
appOptions.name = await promptText('please input your application name', getDomain(url));
appOptions.name = await promptText('Please enter the name of your application.', getDomain(url));
}
appOptions.identifier = getIdentifier(appOptions.name, url);