Update dependencies (#3123)

* Update localforage, remove query-string
* Update fontawesome and flag-icons
* Update formatjs
* Update axios and videojs
* Update apollo client and graphql
* Update bootstrap and react
* Update polyfills
* Update vite
* Update ESLint
* Update stylelint
* Update configs
* Rebuild yarn.lock
This commit is contained in:
DingDongSoLong4
2023-02-16 05:06:44 +02:00
committed by GitHub
parent 0c9eeef143
commit a1851b3713
137 changed files with 5102 additions and 5729 deletions

View File

@@ -1,9 +1,7 @@
import migration32 from "./32.md";
import migration39 from "./39.md";
type Module = typeof migration32;
export const migrationNotes: Record<number, Module> = {
export const migrationNotes: Record<number, string> = {
32: migration32,
39: migration39,
};

View File

@@ -1,11 +1,9 @@
import v0170 from "./v0170.md";
export type Module = typeof v0170;
interface IReleaseNotes {
// handle should be in the form of YYYYMMDD
date: number;
content: Module;
content: string;
}
export const releaseNotes: IReleaseNotes[] = [