aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/postinstall.ts
blob: 4fa71c35f08eef7f4822a3329e91a9510683a3e3 (plain) (blame)
1
2
3
4
5
6
7
8
import { exec } from 'child_process';

// eslint-disable-next-line no-console
const log = (err, stdout, stderr) => console.log(err || stdout || stderr);

if (!process.env.BUNDLING) {
  exec('npx lerna run build', log);
}