openvidu-browser: install inherits and events packages

pull/690/head
pabloFuente 2022-01-26 17:38:23 +01:00
parent 4ca3839821
commit 0010ac1157
6 changed files with 9 additions and 7 deletions

View File

@ -8,7 +8,9 @@
"platform": "1.3.6", "platform": "1.3.6",
"semver": "7.3.5", "semver": "7.3.5",
"uuid": "8.3.2", "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", "description": "OpenVidu Browser",
"devDependencies": { "devDependencies": {

View File

@ -40,7 +40,7 @@ import EventEmitter = require('wolfy87-eventemitter');
/** /**
* @hidden * @hidden
*/ */
import RpcBuilder = require('../OpenViduInternal/KurentoUtils/kurento-jsonrpc'); import RpcBuilder from '../OpenViduInternal/KurentoUtils/kurento-jsonrpc';
/** /**
* @hidden * @hidden

View File

@ -46,11 +46,11 @@ import { PlatformUtils } from '../OpenViduInternal/Utils/Platform';
/** /**
* @hidden * @hidden
*/ */
import semverMajor = require('semver/functions/major'); import semverMajor from 'semver/functions/major';
/** /**
* @hidden * @hidden
*/ */
import semverMinor = require('semver/functions/minor'); import semverMinor from 'semver/functions/minor';
/** /**
* @hidden * @hidden

View File

@ -35,7 +35,7 @@ import { PlatformUtils } from '../OpenViduInternal/Utils/Platform';
/** /**
* @hidden * @hidden
*/ */
import hark = require('hark'); import hark from 'hark';
/** /**
* @hidden * @hidden
*/ */

View File

@ -1,4 +1,4 @@
import platform = require("platform"); import platform = require('platform');
export class PlatformUtils { export class PlatformUtils {
protected static instance: PlatformUtils; protected static instance: PlatformUtils;

View File

@ -15,7 +15,7 @@
* *
*/ */
import freeice = require('freeice'); import freeice from 'freeice';
import { v4 as uuidv4 } from 'uuid'; import { v4 as uuidv4 } from 'uuid';
import { ExceptionEventName } from '../Events/ExceptionEvent'; import { ExceptionEventName } from '../Events/ExceptionEvent';
import { OpenViduLogger } from '../Logger/OpenViduLogger'; import { OpenViduLogger } from '../Logger/OpenViduLogger';