(srcPath, destPath)
| 146 | }; |
| 147 | |
| 148 | export const copyDirectorySync = (srcPath, destPath) => { |
| 149 | const allFiles = getAllFiles(srcPath); |
| 150 | allFiles.forEach((filePath) => { |
| 151 | const relativePath = path.relative(srcPath, filePath); |
| 152 | copySingleFileSync(filePath, destPath + relativePath); |
| 153 | }); |
| 154 | }; |
| 155 | |
| 156 | export const copyDirectoryWithCustomContentSync = ( |
| 157 | srcPath, |
nothing calls this directly
no test coverage detected