()
| 688 | }; |
| 689 | |
| 690 | const compileModulesForProd = async () => { |
| 691 | await clearDir(DIST_DIR); |
| 692 | await copyPackageFiles(true); |
| 693 | await copyDefinitions(DIST_DIR); |
| 694 | |
| 695 | await allModules(async (module) => { |
| 696 | await compileModule(module, `${DIST_DIR}/`); |
| 697 | await compileModule(module, `${DIST_DIR}/min`, true); |
| 698 | }); |
| 699 | }; |
| 700 | |
| 701 | const compileDocsAndAssets = async (api = true, pages = true) => { |
| 702 | const {default: esbuild} = await import('esbuild'); |
no test coverage detected
searching dependent graphs…