1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-03 17:59:55 +02:00
Oinktube/node_modules/videojs-hls-quality-selector/scripts/rollup.config.js
2024-10-27 13:39:07 -03:00

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);