fix:change setup.mjs back into a setup.ts since that wasnt the issue

This commit is contained in:
DuroCodes
2024-06-20 22:46:57 -04:00
parent c1542d8346
commit c4f0c16b36

View File

@@ -1,9 +1,17 @@
import { $ } from "bun";
import { GITHUB_URL } from "~/utils/consts.ts";
import { GITHUB_URL } from "~/utils/consts";
import { existsSync } from "node:fs";
import { copyFile } from "node:fs/promises";
const gits = [
interface GitItem {
name: string;
repo: string;
branch?: string;
folder?: string;
install?: boolean;
}
const gits: GitItem[] = [
{
name: "sern-handler-v3",
repo: "handler",