INNER CODE UNIT · JavaScript
executeTasks
pmadruga/react-native-clean-project · source/plugin.js:21
async function executeTasks() {
for (const task of autoTasks) {
await executeTask(task);
}
}
await executeTasks();
console.log('');
console.log(
'Project cleaned. Use yarn or npm, pod, etc to re-install packages.'
);
console.log(
'You may also want to clean the metro bundler cache. It can only be cleaned on metro startup, like this:'
);
console.log('react-native start -- --reset-cache');
console.log('');
}