Skip to content

Commit

Permalink
dependencies update & replace event lib with eventemitter3
Browse files Browse the repository at this point in the history
  • Loading branch information
jibon57 committed Jun 8, 2023
1 parent 11b57e2 commit cfa4308
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "plugnmeet-client",
"version": "1.4.1",
"version": "1.4.2",
"author": "Jibon L. Costa",
"license": "MIT",
"scripts": {
Expand All @@ -19,12 +19,12 @@
"@headlessui/react": "1.7.15",
"@reduxjs/toolkit": "1.9.5",
"@tensorflow-models/body-pix": "2.2.0",
"@tensorflow/tfjs": "4.6.0",
"@tensorflow/tfjs": "4.7.0",
"axios": "1.4.0",
"copy-text-to-clipboard": "3.1.0",
"emoji-picker-react": "4.4.9",
"events": "3.3.0",
"i18next": "22.5.0",
"eventemitter3": "^5.0.1",
"i18next": "22.5.1",
"i18next-browser-languagedetector": "7.0.2",
"i18next-http-backend": "2.2.1",
"livekit-client": "1.10.0",
Expand Down Expand Up @@ -52,7 +52,7 @@
"@bufbuild/protoc-gen-es": "1.2.1",
"@pmmmwh/react-refresh-webpack-plugin": "0.5.10",
"@types/lodash": "4.14.195",
"@types/react": "18.2.8",
"@types/react": "18.2.9",
"@types/react-dom": "18.2.4",
"@types/sanitize-html": "2.9.0",
"@types/video.js": "^7.3.52",
Expand Down Expand Up @@ -81,15 +81,15 @@
"prettier": "2.8.8",
"react-refresh": "0.14.0",
"react-refresh-typescript": "2.0.9",
"sass": "1.62.1",
"sass": "1.63.2",
"sass-loader": "13.3.1",
"style-loader": "3.3.3",
"tailwindcss": "3.3.2",
"terser-webpack-plugin": "5.3.9",
"ts-loader": "9.4.3",
"typescript": "5.1.3",
"webpack": "5.85.1",
"webpack-cli": "5.1.3",
"webpack": "5.86.0",
"webpack-cli": "5.1.4",
"webpack-dev-server": "4.15.0"
},
"lint-staged": {
Expand Down
2 changes: 1 addition & 1 deletion src/helpers/livekit/ConnectLivekit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import {
Track,
VideoPresets,
} from 'livekit-client';
import { EventEmitter } from 'events';
import { EventEmitter } from 'eventemitter3';

import { store } from '../../store';
import { updateParticipant } from '../../store/slices/participantSlice';
Expand Down
4 changes: 2 additions & 2 deletions src/helpers/livekit/types.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import {
import type {
LocalParticipant,
LocalTrackPublication,
Participant,
RemoteParticipant,
RemoteTrackPublication,
Room,
} from 'livekit-client';
import { EventEmitter } from 'events';
import type EventEmitter from 'eventemitter3';

export type ConnectionStatus =
| 'connecting'
Expand Down

0 comments on commit cfa4308

Please sign in to comment.