Skip to content

Commit

Permalink
Updated rollup config
Browse files Browse the repository at this point in the history
  • Loading branch information
lcdsantos committed Jan 31, 2018
1 parent 72bdd3e commit 33977f4
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,15 @@ const pkg = require('./package.json');
const banner = `/*! ${pkg.title} v${pkg.version} (${new Date().toString().substr(4, 11)}) - ${pkg.homepage} - Copyright (c) ${new Date().getFullYear()} Leonardo Santos; MIT License */`;

export default {
entry: 'src/menuspy.js',
dest: 'dist/menuspy.js',
format: 'umd',
moduleName: 'MenuSpy',
input: 'src/menuspy.js',
output: {
name: 'MenuSpy',
file: 'dist/menuspy.js',
format: 'umd',
banner: banner
},
plugins: [
eslint(),
buble()
],
banner: banner
};
]
};

0 comments on commit 33977f4

Please sign in to comment.