UNPKG

relative-time-format

Version:
20 lines (19 loc) 455 B
// import commonjs from 'rollup-plugin-commonjs' // import json from 'rollup-plugin-json' // import node from 'rollup-plugin-node-resolve' import { terser } from 'rollup-plugin-terser' export default { input: 'index.js', plugins: [ // node(), // commonjs(), // json(), terser() ], output: { format: 'umd', name: 'RelativeTimeFormat', file: 'bundle/relative-time-format.js', sourcemap: true } }