(file)
| 69 | const appPath = paths.appPath; |
| 70 | |
| 71 | function verifyAbsent(file) { |
| 72 | if (fs.existsSync(path.join(appPath, file))) { |
| 73 | console.error( |
| 74 | `\`${file}\` already exists in your app folder. We cannot ` + |
| 75 | 'continue as you would lose all the changes in that file or directory. ' + |
| 76 | 'Please move or delete it (maybe make a copy for backup) and run this ' + |
| 77 | 'command again.' |
| 78 | ); |
| 79 | process.exit(1); |
| 80 | } |
| 81 | } |
| 82 | |
| 83 | const folders = ['config', 'config/jest', 'scripts']; |
| 84 |
nothing calls this directly
no outgoing calls
no test coverage detected