(buildPath, wwwPath)
| 17 | } |
| 18 | |
| 19 | async function syncReactDom(buildPath, wwwPath) { |
| 20 | wwwPath = typeof wwwPath === 'string' ? wwwPath : DEFAULT_WWW_PATH; |
| 21 | |
| 22 | if (wwwPath.charAt(wwwPath.length - 1) !== '/') { |
| 23 | wwwPath += '/'; |
| 24 | } |
| 25 | |
| 26 | const destPath = resolvePath(wwwPath + RELATIVE_WWW_PATH); |
| 27 | await doSync(buildPath, destPath); |
| 28 | } |
| 29 | |
| 30 | async function syncReactNativeHelper( |
| 31 | buildPath, |
nothing calls this directly
no test coverage detected