aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/postinstall.ts7
1 files changed, 0 insertions, 7 deletions
diff --git a/scripts/postinstall.ts b/scripts/postinstall.ts
deleted file mode 100644
index 7205f6c46..000000000
--- a/scripts/postinstall.ts
+++ /dev/null
@@ -1,7 +0,0 @@
1import { exec } from 'child_process';
2
3const log = (err, stdout, stderr) => console.log(err || stdout || stderr);
4
5if (!process.env.BUNDLING) {
6 exec('npx lerna run build', log);
7}