()
| 58 | |
| 59 | /** Execute full build of all format types (iife, cjs & esm) */ |
| 60 | export async function executeFullBuild() { |
| 61 | // first CJS/ESM bundle as single file |
| 62 | await executeCjsEsmBuilds(); |
| 63 | |
| 64 | // build iife in a separate process since all files are built separately instead of a single bundle |
| 65 | return await buildAllIifeFiles(); |
| 66 | } |
| 67 | |
| 68 | /** |
| 69 | * Loop through all slick files and build them as separate iife files using esbuild |
no test coverage detected