From 9d6a851a01b3bd185ec007c0be49aa9d3624c120 Mon Sep 17 00:00:00 2001 From: Antonio Campos Date: Mon, 26 Aug 2024 14:00:15 -0600 Subject: [PATCH] fix: closes 92 - unable to generate app using the --template flag for JET and Angular templates --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index c8da6a6..7f39b50 100644 --- a/src/index.ts +++ b/src/index.ts @@ -207,7 +207,7 @@ export default class Generate extends Command { 'template': Flags.string({ char: 't', description: 'Template to use', - options: ['node-vanilla', 'node-react', 'node-vue', 'node-react-todo'], + options: ['node-vanilla', 'node-react', 'node-vue', 'node-react-todo', 'node-jet', 'node-angular'], multiple: false }),