我有一个要运行的命令列表,以清理React Native项目。有时我使用不同的计算机来处理同一个项目,有时使用目录结构来使项目文件保持不同,并且混乱。
以下是我认为最好的命令列表。但是我很困惑
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(`rm -rf lib/ios/DerivedData`);
exec.execSync(`rm -rf android/build`);
exec.execSync(`rm -rf android/app/build`);
exec.execSync(`rm -rf %appdata%\Temp\react-native-*`);
//exec.execSync(`cd android & \graldew clean`);
exec.execSync(`npm run android`);
//exec.execSync(`cd .. del node_modules`);
//exec.execSync(`npm cache clean --force`);
//exec.execSync(`npm install`);
//exec.execSync(`npm start -- --reset-cache`);
}