mirror of
https://github.com/zhigang1992/react-native-notifications.git
synced 2026-06-10 15:58:51 +08:00
11 lines
278 B
JavaScript
11 lines
278 B
JavaScript
const exec = require('shell-utils').exec;
|
|
|
|
run();
|
|
|
|
function run() {
|
|
exec.killPort(8081);
|
|
exec.execSync(`watchman watch-del-all || true`);
|
|
exec.execSync(`adb reverse tcp:8081 tcp:8081 || true`);
|
|
exec.execSync(`node ./node_modules/react-native/local-cli/cli.js start`);
|
|
}
|