mirror of https://github.com/VERT-sh/VERT.git
fix: ???? what was i doing
DONT MAKE ME PUSH TO PROD AGAIN WHILE RUNNING LITTLE SLEEP IM SORRY NULL
This commit is contained in:
parent
00de1b1855
commit
c04507d1ee
|
@ -30,20 +30,16 @@ export const categories: Categories = {
|
||||||
categories.audio.formats =
|
categories.audio.formats =
|
||||||
converters
|
converters
|
||||||
.find((c) => c.name === "ffmpeg")
|
.find((c) => c.name === "ffmpeg")
|
||||||
?.formatStrings((f) => f.toSupported)
|
?.formatStrings((f) => f.toSupported) || [];
|
||||||
.filter((f) => f !== "mp3") || [];
|
|
||||||
categories.video.formats =
|
categories.video.formats =
|
||||||
converters
|
converters
|
||||||
.find((c) => c.name === "vertd")
|
.find((c) => c.name === "vertd")
|
||||||
?.formatStrings((f) => f.toSupported)
|
?.formatStrings((f) => f.toSupported) || [];
|
||||||
.filter((f) => f !== "mp4") || [];
|
|
||||||
categories.image.formats =
|
categories.image.formats =
|
||||||
converters
|
converters
|
||||||
.find((c) => c.name === "libvips")
|
.find((c) => c.name === "libvips")
|
||||||
?.formatStrings((f) => f.toSupported)
|
?.formatStrings((f) => f.toSupported) || [];
|
||||||
.filter((f) => f !== ".gif") || [];
|
|
||||||
categories.docs.formats =
|
categories.docs.formats =
|
||||||
converters
|
converters
|
||||||
.find((c) => c.name === "pandoc")
|
.find((c) => c.name === "pandoc")
|
||||||
?.formatStrings((f) => f.toSupported)
|
?.formatStrings((f) => f.toSupported) || [];
|
||||||
.filter((f) => f !== ".pdf") || [];
|
|
Loading…
Reference in New Issue