Skip to content

Commit

Permalink
fix: 馃悰 adjust schema.json
Browse files Browse the repository at this point in the history
  • Loading branch information
kreuzerk committed Jan 13, 2021
1 parent 6701328 commit cfb1a76
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion schematics/ng-generate-icon-lib/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,5 +52,5 @@
"visible": false
}
},
"required": ["name", "iconType", "iconInterface", "iconLibraryName", "installLibrary"]
"required": ["name", "iconType", "iconInterface", "iconImportPath", "installLibrary"]
}
14 changes: 8 additions & 6 deletions schematics/ng-generate-icon-lib/schema.model.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
export interface Schema {
name: string;
defaultIconSize: number;
iconType: string;
iconInterface: string;
iconImportPath?: string;
installLibrary: boolean;
name: string;
defaultIconSize: number;
iconType: string;
iconInterface: string;
iconImportPath?: string;
installLibrary: boolean;
path?: string;
project?: string;
}

0 comments on commit cfb1a76

Please sign in to comment.