refactor: move bridge server to scripts folder

This commit is contained in:
Derrick Hammer 2023-12-24 22:25:32 -05:00
parent eb25182cb7
commit c0e4b4a9a9
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
2 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@
"generate:css": "sass styles/:app/styles/",
"start": "remix-serve ./build/server/index.js",
"typecheck": "tsc",
"bridge": "bun run bridge.mts",
"bridge": "bun run scripts/bridge.mts",
"postinstall": "patch-package"
},
"dependencies": {

View File

@ -1,7 +1,7 @@
import { S5Client } from "@lumeweb/s5-js";
import { CID } from "@lumeweb/libs5";
import axios from "axios";
import { getAvailableSites } from "./app/utils.js";
import { getAvailableSites } from "app/utils.js";
const sites = getAvailableSites();