bookmate
Version:
WIP - Complete API for Chrome bookmatearks: create, read, update, delete and change notifications.
14 lines (12 loc) • 328 B
JavaScript
import path from 'path';
import commonjs from '@rollup/plugin-commonjs';
import { terser } from "rollup-plugin-terser";
export default {
input: path.resolve('src', 'index.js'),
output: {
file: path.resolve('dist', 'bookmate.js'),
format: 'cjs',
generatedCode: 'es2015'
},
plugins: [commonjs(), terser()]
};