mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-03 09:49:28 +02:00
Update seek buttons
This commit is contained in:
parent
2b7ac37bc3
commit
f016de70f9
30 changed files with 1092 additions and 2 deletions
12
node_modules/videojs-seek-buttons/scripts/karma.conf.js
generated
vendored
Normal file
12
node_modules/videojs-seek-buttons/scripts/karma.conf.js
generated
vendored
Normal file
|
@ -0,0 +1,12 @@
|
|||
const generate = require('videojs-generate-karma-config');
|
||||
|
||||
module.exports = function(config) {
|
||||
|
||||
// see https://github.com/videojs/videojs-generate-karma-config
|
||||
// for options
|
||||
const options = {};
|
||||
|
||||
config = generate(config, options);
|
||||
|
||||
// any other custom stuff not supported by options here!
|
||||
};
|
9
node_modules/videojs-seek-buttons/scripts/postcss.config.js
generated
vendored
Normal file
9
node_modules/videojs-seek-buttons/scripts/postcss.config.js
generated
vendored
Normal file
|
@ -0,0 +1,9 @@
|
|||
const generate = require('videojs-generate-postcss-config');
|
||||
|
||||
module.exports = function(context) {
|
||||
const result = generate({}, context);
|
||||
|
||||
// do custom stuff here
|
||||
|
||||
return result;
|
||||
};
|
11
node_modules/videojs-seek-buttons/scripts/rollup.config.js
generated
vendored
Normal file
11
node_modules/videojs-seek-buttons/scripts/rollup.config.js
generated
vendored
Normal file
|
@ -0,0 +1,11 @@
|
|||
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!
|
||||
|
||||
// export the builds to rollup
|
||||
export default Object.values(config.builds);
|
Loading…
Add table
Add a link
Reference in a new issue