Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save gorshkov-leonid/04f937d73f19faf5daf202ebbd45c5cd to your computer and use it in GitHub Desktop.
Save gorshkov-leonid/04f937d73f19faf5daf202ebbd45c5cd to your computer and use it in GitHub Desktop.
import resolve from 'rollup-plugin-node-resolve';
import commonjs from 'rollup-plugin-commonjs';
export default {
input: 'index.js',
output: {
file: 'dist/pretty-ms-5.0.0.js',
format: 'umd',
name: 'prettyMilliseconds',
},
name: 'pretty-ms',
plugins: [
resolve(),
commonjs()
]
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment