aboutsummaryrefslogtreecommitdiff
path: root/packages/bun-release/scripts/npm-postinstall.ts
blob: e0f5d5aaf67b1475fcc3474870b8c711f0a2feed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import { importBun, optimizeBun } from "../src/npm/install";

importBun()
  .then(path => {
    optimizeBun(path);
  })
  .catch(error => {
    console.error(error);
    process.exit(1);
  });