(from, to)
| 269 | } |
| 270 | |
| 271 | function copyDirectory(from, to) { |
| 272 | fs.mkdirSync(path.dirname(to), {recursive: true}); |
| 273 | fs.cpSync(from, to, { |
| 274 | recursive: true, |
| 275 | dereference: true |
| 276 | }); |
| 277 | } |
| 278 | |
| 279 | const targets = requestedLibraries.length > 0 ? requestedLibraries : Object.keys(libraries); |
| 280 |
no outgoing calls
no test coverage detected