cleanup sneakers too

This commit is contained in:
Chris Wanstrath 2025-10-07 21:00:43 -07:00
parent a67b04ba51
commit 0f17da319a

View File

@ -3,18 +3,20 @@
import { rmdirSync } from "fs"
import { DEFAULT_PROJECT } from "@/config"
import { projectDir, projects, projectName } from "@/project"
import { disconnectSneaker } from "@/sneaker"
import load from "./load"
export default function (project: string, confirm = false) {
export default async function (project: string, confirm = false) {
if (!projects().includes(project)) throw `no ${project} project`
if (project === DEFAULT_PROJECT) throw `can't delete ${DEFAULT_PROJECT} project`
if (!confirm) throw `> Are you POSITIVE?\n> Run again with 'true' at the end:\n\n$ rmproject ${project} true`
const isCurrent = projectName() === project
if (isCurrent) load("root")
await disconnectSneaker(project)
rmdirSync(projectDir(project), { recursive: true })
if (isCurrent)
return `${project} deleted`
}