Skip to content

Commit

Permalink
nxext#1159 schema.d.ts and schema.json OutputTargetType including vue
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick W committed Dec 10, 2024
1 parent e261df0 commit d8ebde8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { OutputTargetType } from './lib/add-outputtarget-to-config';

export type OutputTargetType = 'angular' | 'react' | 'vue' | 'svelte';
export type OutputTargetType = 'angular' | 'react' | 'svelte' | 'vue';

export interface AddOutputtargetSchematicSchema {
projectName: string;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
},
"outputType": {
"type": "string",
"enum": ["angular", "react", "svelte"],
"enum": ["angular", "react", "svelte", "vue"],
"description": "Select what kind of library you want to generate.",
"x-prompt": "Which framework do you use?"
},
Expand Down

0 comments on commit d8ebde8

Please sign in to comment.