refactor: move bridge server to scripts folder
This commit is contained in:
parent
eb25182cb7
commit
c0e4b4a9a9
|
@ -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": {
|
||||
|
|
|
@ -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();
|
||||
|
Loading…
Reference in New Issue