diff options
author | 2023-02-01 10:27:04 -0800 | |
---|---|---|
committer | 2023-02-01 10:28:01 -0800 | |
commit | 73d6c888b9d4a9ac94452253d924f7ccea069429 (patch) | |
tree | da5c67a32b9547a057b50dabd0e155e35dcfa03d /packages/bun-npm/scripts/npm-postinstall.ts | |
parent | 661fca9cde8bd82fa848944e0c1e0d6f6f12d403 (diff) | |
download | bun-73d6c888b9d4a9ac94452253d924f7ccea069429.tar.gz bun-73d6c888b9d4a9ac94452253d924f7ccea069429.tar.zst bun-73d6c888b9d4a9ac94452253d924f7ccea069429.zip |
Add bun-release package
Diffstat (limited to 'packages/bun-npm/scripts/npm-postinstall.ts')
-rw-r--r-- | packages/bun-npm/scripts/npm-postinstall.ts | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/packages/bun-npm/scripts/npm-postinstall.ts b/packages/bun-npm/scripts/npm-postinstall.ts deleted file mode 100644 index c22f2c669..000000000 --- a/packages/bun-npm/scripts/npm-postinstall.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { importBun, optimizeBun } from "../src/install"; - -importBun() - .then((path) => { - optimizeBun(path); - }) - .catch((error) => { - console.error(error); - process.exit(1); - }); |