Skip to content

Commit 0ac6bf7

Browse files
authored
Use @libresplit/converter instead of @libresplit/libresplit-converter (#20)
1 parent 32bd747 commit 0ac6bf7

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

package-lock.json

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"preview": "vite preview"
1212
},
1313
"dependencies": {
14-
"@libresplit/libresplit-converter": "^0.1.2",
14+
"@libresplit/converter": "^0.1.3",
1515
"@radix-ui/react-dropdown-menu": "^2.1.16",
1616
"@radix-ui/react-navigation-menu": "^1.2.14",
1717
"@radix-ui/react-slot": "^1.2.3",

src/app/converter.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import { useState } from "react";
22

33
import AppFileSelect from "@/components/libresplit/AppFileSelect";
44
import { AppSplitPreview } from "@/components/libresplit/AppSplitPreview";
5-
import init, { convert } from "@libresplit/libresplit-converter";
6-
import wasmUrl from "@libresplit/libresplit-converter/libresplit_converter_bg.wasm?url";
5+
import init, { convert } from "@libresplit/converter";
6+
import wasmUrl from "@libresplit/converter/converter_bg.wasm?url";
77

88
export function Converter() {
99
const [selectedFile, setSelectedFile] = useState<File | null>(null);

0 commit comments

Comments
 (0)