UNPKG

208 BJavaScriptView Raw
1import buble from 'rollup-plugin-buble';
2
3export default {
4 entry: 'src/index.js',
5 external: [],
6 moduleName: 'human-date-range',
7 plugins: [
8 buble()
9 ],
10 format: 'cjs',
11 dest: 'dist/index.js'
12};