@bravemobile/react-native-code-push
Version:
React Native plugin for the CodePush service
11 lines (9 loc) • 315 B
text/typescript
import shell from "shelljs";
/**
* @param deleteDirs {string[]} Directories to delete
* @param makeDir {string} Directory path to create
*/
export function prepareToBundleJS({ deleteDirs, makeDir }: { deleteDirs: string[], makeDir: string }) {
shell.rm('-rf', deleteDirs);
shell.mkdir('-p', makeDir);
}