mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-03 09:49:28 +02:00
17 lines
465 B
JavaScript
17 lines
465 B
JavaScript
const generate = require('videojs-generate-rollup-config');
|
|
|
|
// see https://github.com/videojs/videojs-generate-rollup-config
|
|
// for options
|
|
const options = {};
|
|
const config = generate(options);
|
|
|
|
// Add additonal builds/customization here!
|
|
|
|
// do not build module dists with rollup
|
|
// this is handled by build:es and build:cjs
|
|
if (config.builds.module) {
|
|
delete config.builds.module;
|
|
}
|
|
|
|
// export the builds to rollup
|
|
export default Object.values(config.builds);
|