I was using bun to make a NodeJS library. I updated it to the latest version and now my build.mjs script does not produce an index.js file:
import dts from 'bun-plugin-dts';
await Bun.build({
entrypoints: ['lib/index.ts'],
outdir: './dist',
target: 'node',
plugins: [dts()],
});
Nowhere on the 1.1.30 release is this mentioned to have a breaking change or any change whatsoever. Is there a way to roll back to a working bun version? Why change something that was working perfectly before 1.1.30?