Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update devdependencies (non-major) #1263

Merged
merged 2 commits into from
Oct 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,12 @@
"@babel/core": "7.25.2",
"@babel/preset-env": "7.25.4",
"@bufbuild/protoc-gen-es": "^1.3.0",
"@changesets/cli": "2.27.7",
"@changesets/cli": "2.27.8",
"@livekit/changesets-changelog-github": "^0.0.4",
"@rollup/plugin-babel": "6.0.4",
"@rollup/plugin-commonjs": "26.0.1",
"@rollup/plugin-commonjs": "26.0.3",
"@rollup/plugin-json": "6.1.0",
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/plugin-node-resolve": "15.3.0",
"@rollup/plugin-terser": "^0.4.0",
"@size-limit/file": "^8.2.4",
"@size-limit/webpack": "^8.2.4",
Expand All @@ -82,23 +82,23 @@
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"downlevel-dts": "^0.11.0",
"eslint": "8.57.0",
"eslint": "8.57.1",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-ecmascript-compat": "^3.0.0",
"eslint-plugin-import": "2.30.0",
"gh-pages": "6.1.1",
"jsdom": "^24.0.0",
"prettier": "^3.0.0",
"rollup": "4.22.4",
"rollup": "4.24.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-re": "1.0.7",
"rollup-plugin-typescript2": "0.36.0",
"size-limit": "^8.2.4",
"typedoc": "0.26.6",
"typedoc": "0.26.7",
"typedoc-plugin-no-inherit": "1.4.0",
"typescript": "5.5.4",
"vite": "5.4.6",
"typescript": "5.6.2",
"vite": "5.4.8",
"vitest": "^1.0.0"
},
"packageManager": "[email protected]"
Expand Down
952 changes: 593 additions & 359 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/e2ee/worker/FrameCryptor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { workerLogger } from '../../logger';
import type { VideoCodec } from '../../room/track/options';
import { ENCRYPTION_ALGORITHM, IV_LENGTH, UNENCRYPTED_BYTES } from '../constants';
import { CryptorError, CryptorErrorReason } from '../errors';
import { CryptorCallbacks, CryptorEvent } from '../events';
import { type CryptorCallbacks, CryptorEvent } from '../events';
import type { DecodeRatchetOptions, KeyProviderOptions, KeySet } from '../types';
import { deriveKeys, isVideoFrame, needsRbspUnescaping, parseRbsp, writeRbsp } from '../utils';
import type { ParticipantKeyHandler } from './ParticipantKeyHandler';
Expand Down
2 changes: 1 addition & 1 deletion src/e2ee/worker/e2ee.worker.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { workerLogger } from '../../logger';
import { VideoCodec } from '../../room/track/options';
import type { VideoCodec } from '../../room/track/options';
import { AsyncQueue } from '../../utils/AsyncQueue';
import { KEY_PROVIDER_DEFAULTS } from '../constants';
import { CryptorErrorReason } from '../errors';
Expand Down
2 changes: 1 addition & 1 deletion src/room/participant/Participant.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {
} from '@livekit/protocol';
import { EventEmitter } from 'events';
import type TypedEmitter from 'typed-emitter';
import log, { LoggerNames, StructuredLogger, getLogger } from '../../logger';
import log, { LoggerNames, type StructuredLogger, getLogger } from '../../logger';
import { ParticipantEvent, TrackEvent } from '../events';
import LocalAudioTrack from '../track/LocalAudioTrack';
import type LocalTrackPublication from '../track/LocalTrackPublication';
Expand Down
2 changes: 1 addition & 1 deletion src/room/track/Track.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
import { EventEmitter } from 'events';
import type TypedEventEmitter from 'typed-emitter';
import type { SignalClient } from '../../api/SignalClient';
import log, { LoggerNames, StructuredLogger, getLogger } from '../../logger';
import log, { LoggerNames, type StructuredLogger, getLogger } from '../../logger';
import { TrackEvent } from '../events';
import type { LoggerOptions } from '../types';
import { isFireFox, isSafari, isWeb } from '../utils';
Expand Down
2 changes: 1 addition & 1 deletion src/room/track/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
type CreateLocalTracksOptions,
type ScreenShareCaptureOptions,
type VideoCaptureOptions,
VideoCodec,
type VideoCodec,
videoCodecs,
} from './options';
import type { AudioTrack } from './types';
Expand Down
2 changes: 1 addition & 1 deletion src/room/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { protocolVersion, version } from '../version';
import CriticalTimers from './timers';
import type LocalAudioTrack from './track/LocalAudioTrack';
import type RemoteAudioTrack from './track/RemoteAudioTrack';
import { VideoCodec, videoCodecs } from './track/options';
import { type VideoCodec, videoCodecs } from './track/options';
import { getNewAudioContext } from './track/utils';
import type { ChatMessage, LiveKitReactNativeInfo, TranscriptionSegment } from './types';

Expand Down
2 changes: 1 addition & 1 deletion src/test/mocks.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// eslint-disable-next-line import/no-extraneous-dependencies
import { MockedClass, vi } from 'vitest';
import { type MockedClass, vi } from 'vitest';
import { SignalClient } from '../api/SignalClient';
import RTCEngine from '../room/RTCEngine';

Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */,
"moduleResolution": "node",
"resolveJsonModule": true,
"importsNotUsedAsValues": "error",
"verbatimModuleSyntax": true,
"ignoreDeprecations": "5.0"
},
"exclude": ["dist", "**/*.test.ts"],
Expand Down
Loading