(rollupOptions: RollupOptions)
| 45 | } |
| 46 | |
| 47 | export async function buildRollup(rollupOptions: RollupOptions): Promise<void> { |
| 48 | const bundle = await rollup(rollupOptions); |
| 49 | if (rollupOptions.output) { |
| 50 | if (Array.isArray(rollupOptions.output)) { |
| 51 | for (const output of rollupOptions.output) { |
| 52 | await bundle.write(output); |
| 53 | } |
| 54 | } else { |
| 55 | await bundle.write(rollupOptions.output); |
| 56 | } |
| 57 | } |
| 58 | } |
| 59 | |
| 60 | const extractorAPIBaseConfig: IExtractorConfigPrepareOptions = { |
| 61 | configObjectFullPath: undefined, |
no outgoing calls
no test coverage detected
searching dependent graphs…