UNPKG

react-simple-marquee

Version:

Marquee build with React and CSS animation

18 lines (16 loc) 344 B
import pkg from './package.json' import babel from '@rollup/plugin-babel'; export default { input: 'lib/index.jsx', output: [ { file: pkg.main, format: 'cjs', exports: 'named', sourcemap: true, strict: false } ], plugins: [babel({ babelHelpers: 'bundled' })], external: ['react', 'react-dom'] }