1.0.0 • Published 7 years ago

rollup-plugin-clean v1.0.0

Weekly downloads
255
License
MIT
Repository
github
Last release
7 years ago

rollup-plugin-clean

Clean the build directory before rebuilding.

Installation

yarn add -D rollup-plugin-clean

or

npm install -D rollup-plugin-clean

Usage

In the rollup.config.js:

import clean from 'rollup-plugin-clean';

export default {
  entry: 'src/index.js',
  dest: 'dist/bundle.js',
  plugins: [
    clean()
  ]
};

and the dist directory will be removed everytime rebuilding.

License

MIT