react-native-navigation的迁移库

postinstall.js 513B

123456789101112131415161718
  1. const shellUtils = require('shell-utils');
  2. function installNavigation() {
  3. shellUtils.exec.execSync(`mkdir -p ./node_modules/react-native-navigation`);
  4. const navigationTar = shellUtils.exec.execSyncRead(`cd .. && npm pack`);
  5. shellUtils.exec.execSync(`tar -xf ../${navigationTar} -C ./node_modules/react-native-navigation --strip 1`);
  6. shellUtils.exec.execSync(`rm ../${navigationTar}`);
  7. }
  8. function run() {
  9. shellUtils.exec.execSync(`./scripts/ignoreReactWarnings.rb`);
  10. installNavigation();
  11. }
  12. run();