react-native-navigation的迁移库

test.ios.js 279B

123456789101112
  1. const exec = require('shell-utils').exec;
  2. function run() {
  3. process.chdir('./playground');
  4. exec.execSync(`hardlink node_modules/react-native-navigation/ -u || true`);
  5. exec.execSync(`yarn install`);
  6. exec.execSync(`yarn run e2e release`);
  7. process.chdir('../');
  8. }
  9. run();