UNPKG

react-native-theme-switch-animation

Version:
41 lines (36 loc) • 896 B
const child_process = require('child_process'); module.exports = { name: 'pod-install', factory() { return { hooks: { afterAllInstalled(project, options) { if (process.env.POD_INSTALL === '0') { return; } if ( options && (options.mode === 'update-lockfile' || options.mode === 'skip-build') ) { return; } const result = child_process.spawnSync( 'yarn', ['pod-install', 'example/ios'], { cwd: project.cwd, env: process.env, stdio: 'inherit', encoding: 'utf-8', shell: true, } ); if (result.status !== 0) { throw new Error('Failed to run pod-install'); } }, }, }; }, };