UNPKG

videojs-playlist

Version:
46 lines (44 loc) 1.01 kB
/** * Rollup configuration for packaging the plugin in a module that is consumable * by either CommonJS (e.g. Node or Browserify) or ECMAScript (e.g. Rollup). * * These modules DO NOT include their dependencies as we expect those to be * handled by the module system. */ import babel from 'rollup-plugin-babel'; import json from 'rollup-plugin-json'; export default { name: 'videojsPlaylist', input: 'src/plugin.js', output: [ {file: 'dist/videojs-playlist.cjs.js', format: 'cjs'}, {file: 'dist/videojs-playlist.es.js', format: 'es'} ], external: [ 'global/document', 'global/window', 'video.js' ], globals: { 'video.js': 'videojs' }, legacy: true, plugins: [ json(), babel({ babelrc: false, exclude: 'node_modules/**', presets: [ 'es3', ['es2015', { loose: true, modules: false }] ], plugins: [ 'external-helpers', 'transform-object-assign' ] }) ] };