aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorLibravatar Vijay Aravamudhan <vraravam@users.noreply.github.com>2021-10-15 19:09:43 +0530
committerLibravatar GitHub <noreply@github.com>2021-10-15 19:09:43 +0530
commitf453ec83142be417b79ad0ac8c794a44f2e3b4da (patch)
treee44d20bb85711c8f5d3f962eb04d459e7dfdb3ff /scripts
parentchore: move 'packages/themes' into 'src' (no longer an injected package) (#2080) (diff)
downloadferdium-app-f453ec83142be417b79ad0ac8c794a44f2e3b4da.tar.gz
ferdium-app-f453ec83142be417b79ad0ac8c794a44f2e3b4da.tar.zst
ferdium-app-f453ec83142be417b79ad0ac8c794a44f2e3b4da.zip
chore: remove 'lerna' since we don't use monorepo-style packages any more (#2081)
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}