Upgrade outdated dependencies
This commit is contained in:
parent
ec3c46d356
commit
ca19a7a774
24 changed files with 2416 additions and 2892 deletions
|
@ -3,7 +3,7 @@
|
|||
|
||||
import * as React from 'react';
|
||||
import PQueue from 'p-queue';
|
||||
import LRU from 'lru-cache';
|
||||
import { LRUCache } from 'lru-cache';
|
||||
|
||||
import type { WaveformCache } from '../types/Audio';
|
||||
import * as log from '../logging/log';
|
||||
|
@ -29,7 +29,7 @@ export type Contents = {
|
|||
// created.)
|
||||
let audioContext: AudioContext | undefined;
|
||||
|
||||
const waveformCache: WaveformCache = new LRU({
|
||||
const waveformCache: WaveformCache = new LRUCache({
|
||||
max: MAX_WAVEFORM_COUNT,
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue