blob: c22f2c6692a436713bd5da69432881576887a0fe (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
import { importBun, optimizeBun } from "../src/install";
importBun()
.then((path) => {
optimizeBun(path);
})
.catch((error) => {
console.error(error);
process.exit(1);
});
|