react-router-enzyme-context
Version:
A helper for mocking react router v4 context and childContextTypes when testing components with Enzyme mount() and shallow().
27 lines (25 loc) • 720 B
JavaScript
import babel from 'rollup-plugin-babel';
import resolve from 'rollup-plugin-node-resolve';
import commonjs from 'rollup-plugin-commonjs'
import pkg from './package.json';
export default [
// CommonJS (for Node) and ES module (for bundlers) build.
// (We could have three entries in the configuration array
// instead of two, but it's quicker to generate multiple
// builds from a single configuration where possible, using
// the `targets` option which can specify `dest` and `format`)
{
input: 'src/index.js',
output: [
{ file: pkg.main, format: 'cjs' },
{ file: pkg.module, format: 'es' }
],
plugins: [
resolve(),
commonjs(),
babel({
exclude: ['node_modules/**']
})
]
}
]