1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-01-02 12:47:41 +02:00
joplin/packages/app-mobile/tools/clean.js

18 lines
584 B
JavaScript
Raw Normal View History

2020-11-05 18:58:23 +02:00
// We don't make that a gulp task because we might want to run it before
// gulp has been installed.
const fs = require('fs-extra');
async function main() {
const mobileDir = `${__dirname}/..`;
await fs.remove(`${mobileDir}/android/.gradle`);
await fs.remove(`${mobileDir}/android/app/build`);
await fs.remove(`${mobileDir}/ios/Pods`);
2020-11-05 18:58:23 +02:00
console.info('To clean the Android build, in some rare cases you might also need to clear the cache in ~/.android and ~/.gradle');
}
main().catch((error) => {
console.error('Could not clean mobile app build', error);
process.exit(1);
});