diff --git a/src/new/new.action.ts b/src/new/new.action.ts index 4cc35ed..c928674 100644 --- a/src/new/new.action.ts +++ b/src/new/new.action.ts @@ -55,8 +55,12 @@ async function getTemplate(providedTemplate?: string): Promise { { 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 };