- Added component schematic that adds to existing project.
* Supports CSS-in-JS styles, functional components, etc.
- Lib and app schematics now support new style, funtional components options (same as component)
9 lines
182 B
TypeScript
9 lines
182 B
TypeScript
export interface PackageDependencies {
|
|
dependencies: DependencyEntries;
|
|
devDependencies: DependencyEntries;
|
|
}
|
|
|
|
export interface DependencyEntries {
|
|
[module: string]: string;
|
|
}
|