( entries: FilePath | Array<FilePath>, opts?: InitialParcelOptions, )
| 230 | } |
| 231 | |
| 232 | export async function bundle( |
| 233 | entries: FilePath | Array<FilePath>, |
| 234 | opts?: InitialParcelOptions, |
| 235 | ): Promise<BundleGraph<PackagedBundle>> { |
| 236 | return (await bundler(entries, opts).run()).bundleGraph; |
| 237 | } |
| 238 | |
| 239 | export function getNextBuild(b: Parcel): Promise<BuildEvent> { |
| 240 | return new Promise((resolve, reject) => { |
searching dependent graphs…