UNPKG

react-native-template-mrf

Version:

15 lines (13 loc) 322 B
const config = require('./package.json') const android = require('./src/android') const ios = require('./src/ios') const install = async () => { try { console.log(await android(config)) // await ios(config) } catch (error) { console.log(error) } process.exit() } install()