mirror of
https://github.com/postlight/mercury-parser
synced 2024-11-03 15:40:16 +00:00
752331eaae
Squashed commit of the following: commit 52bcf0f2dd79bcb2ee21bc134522edd259a3d35e Author: Adam Pash <adam.pash@gmail.com> Date: Fri Sep 2 13:42:29 2016 -0400 fix: converting date to ISO string commit 11e827e27129ac229a96f66ca03f0b18dc5d289d Author: Adam Pash <adam.pash@gmail.com> Date: Fri Sep 2 13:42:12 2016 -0400 feat: bundling with rollup commit 1ff752a3e44e5836b955f7f15c799abbbdfc9207 Author: Adam Pash <adam.pash@gmail.com> Date: Fri Sep 2 12:11:39 2016 -0400 clean
14 lines
292 B
JavaScript
14 lines
292 B
JavaScript
import babel from 'rollup-plugin-babel'
|
|
import babelrc from 'babelrc-rollup'
|
|
import commonjs from 'rollup-plugin-commonjs'
|
|
|
|
export default {
|
|
entry: 'src/index.js',
|
|
plugins: [
|
|
commonjs(),
|
|
babel(babelrc()),
|
|
],
|
|
format: 'cjs',
|
|
dest: 'dist/bundle.js' // equivalent to --output
|
|
}
|