react-datalist-input/rollup.config.js
Andre Landgraf 2ade3865d1 refactors to functional component
- rewrites DataListInput as a functional component
- changes version to 2.0.0
- describes versioning in README
- adds more unit tests
- adds snapshot tests
- adds better a11y support by adding aria-labels and roles
2020-09-05 15:58:39 -07:00

25 lines
532 B
JavaScript

import babel from 'rollup-plugin-babel';
import sass from 'rollup-plugin-sass';
import jsx from 'rollup-plugin-jsx';
import pkg from './package.json';
export default {
input: 'src/DataListInput.jsx',
output: [
{
file: pkg.main,
format: 'cjs',
exports: 'named',
sourcemap: true,
strict: false,
},
],
plugins: [
babel({ exclude: 'node_modules/**' }),
sass({ insert: true }),
jsx({ factory: 'React.createElement' }),
],
external: ['react', 'react-dom', 'prop-types'],
};