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