Skip to content

Commit

Permalink
fix ts to be before js
Browse files Browse the repository at this point in the history
  • Loading branch information
cherriechang committed Aug 8, 2024
1 parent 871bfdd commit 52d45a6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions templates/cli/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ async function runPrompts() {
const language = await select({
message: "What language do you want to use?",
choices: [
{
name: "JavaScript",
value: "js",
},
{
name: "TypeScript",
value: "ts",
},
{
name: "JavaScript",
value: "js",
}
],
loop: false,
});
Expand Down

0 comments on commit 52d45a6

Please sign in to comment.