mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 02:48:50 +00:00
11 lines
193 B
TypeScript
11 lines
193 B
TypeScript
import { importBun, optimizeBun } from "../src/npm/install";
|
|
|
|
importBun()
|
|
.then(path => {
|
|
optimizeBun(path);
|
|
})
|
|
.catch(error => {
|
|
console.error(error);
|
|
process.exit(1);
|
|
});
|