mirror of https://github.com/OpenVidu/openvidu.git
openvidu-browser: install inherits and events packages
parent
4ca3839821
commit
0010ac1157
|
@ -8,7 +8,9 @@
|
|||
"platform": "1.3.6",
|
||||
"semver": "7.3.5",
|
||||
"uuid": "8.3.2",
|
||||
"wolfy87-eventemitter": "5.2.9"
|
||||
"wolfy87-eventemitter": "5.2.9",
|
||||
"events": "3.1.0",
|
||||
"inherits": "2.0.3"
|
||||
},
|
||||
"description": "OpenVidu Browser",
|
||||
"devDependencies": {
|
||||
|
|
|
@ -40,7 +40,7 @@ import EventEmitter = require('wolfy87-eventemitter');
|
|||
/**
|
||||
* @hidden
|
||||
*/
|
||||
import RpcBuilder = require('../OpenViduInternal/KurentoUtils/kurento-jsonrpc');
|
||||
import RpcBuilder from '../OpenViduInternal/KurentoUtils/kurento-jsonrpc';
|
||||
|
||||
/**
|
||||
* @hidden
|
||||
|
|
|
@ -46,11 +46,11 @@ import { PlatformUtils } from '../OpenViduInternal/Utils/Platform';
|
|||
/**
|
||||
* @hidden
|
||||
*/
|
||||
import semverMajor = require('semver/functions/major');
|
||||
import semverMajor from 'semver/functions/major';
|
||||
/**
|
||||
* @hidden
|
||||
*/
|
||||
import semverMinor = require('semver/functions/minor');
|
||||
import semverMinor from 'semver/functions/minor';
|
||||
|
||||
/**
|
||||
* @hidden
|
||||
|
|
|
@ -35,7 +35,7 @@ import { PlatformUtils } from '../OpenViduInternal/Utils/Platform';
|
|||
/**
|
||||
* @hidden
|
||||
*/
|
||||
import hark = require('hark');
|
||||
import hark from 'hark';
|
||||
/**
|
||||
* @hidden
|
||||
*/
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import platform = require("platform");
|
||||
import platform = require('platform');
|
||||
|
||||
export class PlatformUtils {
|
||||
protected static instance: PlatformUtils;
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
*
|
||||
*/
|
||||
|
||||
import freeice = require('freeice');
|
||||
import freeice from 'freeice';
|
||||
import { v4 as uuidv4 } from 'uuid';
|
||||
import { ExceptionEventName } from '../Events/ExceptionEvent';
|
||||
import { OpenViduLogger } from '../Logger/OpenViduLogger';
|
||||
|
|
Loading…
Reference in New Issue