| 46 | }; |
| 47 | |
| 48 | const removeFileDir = fileDirPath => { |
| 49 | try { |
| 50 | removeFileDirectoryRecursively(fileDirPath); |
| 51 | console.log(`Deleted: ${fileDirPath}`); |
| 52 | } catch (err) { |
| 53 | console.log(`Error deleting ${fileDirPath}: ${err.message}`); |
| 54 | } |
| 55 | }; |
| 56 | |
| 57 | /// Remove example/node_modules/react-native-library-name/node_modules directory |
| 58 | const removeLibraryNodeModulesPath = nodeModulesPath => { |
no test coverage detected