Skip to content

Commit e5b15b2

Browse files
committed
feat: better hints
1 parent 6b0f68b commit e5b15b2

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

packages/create-app/src/lib/utils/prompts.ts

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -161,21 +161,23 @@ export function promptBundlers(
161161

162162
export function promptRemoteCacheProvider() {
163163
return promptSelect<SupportedRemoteCacheProviders | null>({
164-
message: 'Where do you store or intend to store remote build cache?',
164+
message: 'What do you want to use as cache for your remote builds?',
165165
initialValue: 'github-actions',
166166
options: [
167167
{
168168
value: 'github-actions',
169169
label: 'GitHub Actions',
170+
hint: 'The easiest way to start if you store your code on GitHub'
170171
},
171172
{
172173
value: 's3',
173-
label: 'Amazon S3',
174+
label: 'S3',
175+
hint: 'Work with any S3-compatible storage, including AWS S3 and Cloudflare R2'
174176
},
175177
{
176178
value: null,
177179
label: 'None',
178-
hint: 'Local cache only',
180+
hint: `Local cache only which isn't shared across team members or CI/CD environments`,
179181
},
180182
],
181183
});

0 commit comments

Comments
 (0)