Replace lerna-get-packages with our own implementation

This commit is contained in:
Fabio Berger
2018-07-19 15:50:21 +02:00
parent c839965c05
commit 6f540e3e58
9 changed files with 79 additions and 51 deletions

View File

@@ -1,16 +0,0 @@
declare interface LernaPackage {
location: string;
package: {
private?: boolean;
version: string;
name: string;
main?: string;
config?: {
additionalTsTypings?: string[];
};
};
}
declare function lernaGetPackages(path: string): LernaPackage[];
declare module 'lerna-get-packages' {
export = lernaGetPackages;
}