(src, dest, opts)
| 13 | } = require('../lib'); |
| 14 | |
| 15 | const copyDirRecursive = (src, dest, opts) => { |
| 16 | try { |
| 17 | fs.copySync(src, dest); |
| 18 | return true; |
| 19 | } catch (e) { |
| 20 | opts.errorLog( |
| 21 | 'Failed to create necessary files. Please check your permissions and try again.', |
| 22 | ); |
| 23 | } |
| 24 | return false; |
| 25 | }; |
| 26 | |
| 27 | const createSuccess = (destinationDir, opts) => { |
| 28 | console.log( |
no outgoing calls
no test coverage detected
searching dependent graphs…