Skip to content

Commit 9e5cd6d

Browse files
authoredMay 17, 2022
chore(remix-dev): default to "just the basics" (#3078)
1 parent 03b86cc commit 9e5cd6d

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed
 

‎packages/remix-dev/cli/run.ts

+5-4
Original file line numberDiff line numberDiff line change
@@ -253,18 +253,19 @@ export async function run(argv: string[] = process.argv.slice(2)) {
253253
name: "appType",
254254
type: "list",
255255
message: "What type of app do you want to create?",
256+
default: "template",
256257
when() {
257258
return flags.template === undefined;
258259
},
259260
choices: [
260-
{
261-
name: "A pre-configured stack ready for production",
262-
value: "stack",
263-
},
264261
{
265262
name: "Just the basics",
266263
value: "template",
267264
},
265+
{
266+
name: "A pre-configured stack ready for production",
267+
value: "stack",
268+
},
268269
],
269270
},
270271
{

0 commit comments

Comments
 (0)
Please sign in to comment.