You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
360 B
JavaScript

// rollup.config.js
// https://github.com/rollup/rollup-plugin-commonjs
import commonjs from 'rollup-plugin-commonjs';
import resolve from 'rollup-plugin-node-resolve';
export default [{
input: 'src/recentchanges.js',
output: {
file: 'dist/recentchanges.js',
format: 'iife',
name: 'app'
},
plugins: [
resolve(),
commonjs()
]
}];