(options: BuildOptions[])
| 136 | * @param options |
| 137 | */ |
| 138 | export async function build(options: BuildOptions[]) { |
| 139 | return transduce.async( |
| 140 | createBuildOptions(options), |
| 141 | pipe.async(computeOptions, logStartBuild, addExtensionFormat, addDefaultOutDir, executeEsBuild), |
| 142 | ) |
| 143 | } |
| 144 | |
| 145 | /** |
| 146 | * Prints a message every time a new bundle is built |
no test coverage detected