UNPKG

react-redux-express

Version:

React fullstack generator with express,redux, and some components.

16 lines (13 loc) 302 B
/** * Created by Zhengfeng Yao on 16/8/24. */ import del from 'del'; import fs from './lib/fs'; /** * Cleans up the output (build) directory. */ async function clean() { await del(['.tmp', 'build/*', '!build/.git'], { dot: true }); await fs.makeDir('build/public'); } export default clean;