File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
packages/create-app/src/lib/utils Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -161,21 +161,23 @@ export function promptBundlers(
161161
162162export 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 } ) ;
You can’t perform that action at this time.
0 commit comments