diff --git a/src/rollup.js b/src/rollup.js index 11f1c68..d509bd2 100644 --- a/src/rollup.js +++ b/src/rollup.js @@ -9,24 +9,21 @@ import Bundle from './Bundle.js'; export const VERSION = '<@VERSION@>'; const ALLOWED_KEYS = [ - 'entry', + 'banner', 'dest', - 'plugins', + 'entry', 'external', - 'onwarn', - 'indent', + 'footer', 'format', - 'moduleName', - 'sourceMap', + 'globals', + 'indent', 'intro', + 'moduleId', + 'moduleName', + 'onwarn', 'outro', - 'banner', - 'footer', - 'globals', - 'transform', - 'load', - 'resolveId', - 'resolveExternal' + 'plugins', + 'sourceMap' ]; export function rollup ( options ) {