A Rollup plugin that clean directories before rebuilding.
import {clean} from "@appnest/web-config";
export default {
entry: "src/index.js"
output: {
dest: "dist/index.js"
},
plugins: [
clean({
targets: [
"dist"
]
})
]
};
Licensed under MIT.