(output, bundle, args)
| 27 | import type {ConfigT} from '../util/Config'; |
| 28 | |
| 29 | function saveBundle(output, bundle, args) { |
| 30 | return Promise.resolve( |
| 31 | output.save(bundle, args, log) |
| 32 | ).then(() => bundle); |
| 33 | } |
| 34 | |
| 35 | function buildBundle( |
| 36 | args: OutputOptions & { |
no test coverage detected
searching dependent graphs…