()
| 204 | } |
| 205 | |
| 206 | const copyApps = (): Promise<void>[] => { |
| 207 | return federatedConfig.apps.map((app) => { |
| 208 | const appDir = resolve(config.app.rootDir, app.webDir); |
| 209 | return copyWebDir(config, resolve(nativeAbsDir, app.name), appDir); |
| 210 | }); |
| 211 | }; |
| 212 | |
| 213 | const copyShell = (): Promise<void> => { |
| 214 | return copyWebDir(config, resolve(nativeAbsDir, federatedConfig.shell.name), config.app.webDirAbs); |
no test coverage detected