storybook/scripts/utils/list-packages.ts
2020-05-18 22:29:50 +02:00

22 lines
456 B
TypeScript

import { exec } from 'child_process';
export interface Package {
name: string;
version: string;
private: boolean;
location: string;
}
export const listOfPackages = (): Promise<Package[]> =>
new Promise((res, rej) => {
const command = `npx lerna list --json`;
exec(command, (e, result) => {
if (e) {
rej(e);
} else {
const data = JSON.parse(result.toString().trim());
res(data);
}
});
});