Adds Rollup support to brunch.
Install the plugin via npm with npm install --save rollup-brunch
.
Or, do manual install:
- Add
"rollup-brunch": "x.y.z"
topackage.json
of your brunch app. Pick a plugin version that corresponds to your minor (y) brunch version. - If you want to use the git version of the plugin, add
"rollup-brunch": "brunch/rollup-brunch"
.
Accepts the same options as rollup.
To use with Babel, install @rollup/plugin-babel
and configure brunch like this:
plugins: {
rollup: {
plugins: [require('@rollup/plugin-babel')({
babelHelpers: 'bundled'
})]
}
}