rollup-config-builder

0.6.0 • Public • Published

rollup-config-builder

Installation

yarn add --dev rollup rollup-config-builder

Usage

Your project need to have Babel configured.

Then, in your rollup.config.js:

import buildConfig from 'rollup-config-builder';
import del         from 'del';
 
del.sync(['./dist']);
export default buildConfig({
    entry  : `./src/my-module.js`,
    output : {
        file : `./dist/my-module.js`,
        name : 'MyModule'
    }
});

Will produce:

/dist
├── my-module.es.js  <--- ES6 module file. (for the `module` field in `package.json`) 
├── my-module.js     <--- UMD (for the `main` field in `package.json`)
└── my-module.min.js <--- UMD, minified.

Readme

Keywords

none

Package Sidebar

Install

npm i rollup-config-builder

Weekly Downloads

0

Version

0.6.0

License

MIT

Last publish

Collaborators

  • donov4n