()
| 17 | const repoUrl = 'https://github.com/dabit3/react-native-ai.git' |
| 18 | |
| 19 | const isYarnInstalled = () => { |
| 20 | try { |
| 21 | childProcess.execSync('yarn --version'); |
| 22 | return true; |
| 23 | } catch { |
| 24 | return false; |
| 25 | } |
| 26 | } |
| 27 | |
| 28 | const isBunInstalled = () => { |
| 29 | try { |