diff --git a/bun.config.ts b/bun.config.ts index 3908c3e..5e02e04 100644 --- a/bun.config.ts +++ b/bun.config.ts @@ -1,6 +1,7 @@ import { buildWithBun } from '@kevisual/code-builder'; -await buildWithBun({ naming: 'app', entry: 'src/index.ts', dts: true, clean: true }); +const external = ['@parcel/watcher'] +await buildWithBun({ naming: 'app', entry: 'src/index.ts', dts: true, clean: true, external }); -await buildWithBun({ naming: 'remote', entry: 'src/remote.ts', dts: true }); +await buildWithBun({ naming: 'remote', entry: 'src/remote.ts', dts: true, external });