diff options
Diffstat (limited to 'packages/bun-release/scripts/npm-postinstall.ts')
-rw-r--r-- | packages/bun-release/scripts/npm-postinstall.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/bun-release/scripts/npm-postinstall.ts b/packages/bun-release/scripts/npm-postinstall.ts index bde044300..e0f5d5aaf 100644 --- a/packages/bun-release/scripts/npm-postinstall.ts +++ b/packages/bun-release/scripts/npm-postinstall.ts @@ -1,10 +1,10 @@ import { importBun, optimizeBun } from "../src/npm/install"; importBun() - .then((path) => { + .then(path => { optimizeBun(path); }) - .catch((error) => { + .catch(error => { console.error(error); process.exit(1); }); |