()
| 730 | export const preparePackage = copyPackageFiles; |
| 731 | |
| 732 | export const compileForTest = async () => { |
| 733 | await clearDir(DIST_DIR); |
| 734 | await copyPackageFiles(); |
| 735 | await copyDefinitions(DIST_DIR); |
| 736 | await allModules(async (module) => { |
| 737 | await compileModule(module, DIST_DIR); |
| 738 | }); |
| 739 | }; |
| 740 | |
| 741 | export const compileForTestInspectorOnly = async () => { |
| 742 | await compileModule('ui-react', DIST_DIR); |
nothing calls this directly
no test coverage detected
searching dependent graphs…