-
-
Notifications
You must be signed in to change notification settings - Fork 312
Closed
Labels
Description
{'video.js': 'videojs'}, |
The current setting creates invalid "require" calls in compiled JS:
(function webpackUniversalModuleDefinition(root, factory) {
if(typeof exports === 'object' && typeof module === 'object')
module.exports = factory(require("RecordRTC"), require("videojs"));
else if(typeof define === 'function' && define.amd)
define("VideojsRecord", ["RecordRTC", "videojs"], factory);
else if(typeof exports === 'object')
exports["VideojsRecord"] = factory(require("RecordRTC"), require("videojs"));
else
root["VideojsRecord"] = factory(root["RecordRTC"], root["videojs"]);
})