Skip to content

Commit

Permalink
feat: disable react templates due to a critical bug
Browse files Browse the repository at this point in the history
  • Loading branch information
SewerynKras committed Jul 2, 2024
1 parent 772a627 commit 72a4c98
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/new/new.action.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,12 @@ async function getTemplate(providedTemplate?: string): Promise<string> {
{ name: "ts-node-esm", hint: "TypeScript CLI application (ESM)" },
{ name: "js-node", hint: "Plain Javascript CLI application (CommonJS)" },
{ name: "js-node-esm", hint: "Plain Javascript CLI application (ESM)" },
{ name: "react-js", hint: "React web application (with Vite and plain Javascript)" },
{ name: "react-ts", hint: "React web application (with Vite and Typescript)" },
{
name: "(coming soon) react-js",
hint: "React web application (with Vite and plain Javascript)",
disabled: true,
},
{ name: "(coming soon) react-ts", hint: "React web application (with Vite and Typescript)", disabled: true },
// { name: "js-webapp", hint: "Plain Javascript Express based web application" },
],
})) as { template: string };
Expand Down

0 comments on commit 72a4c98

Please sign in to comment.