This commit is contained in:
Dax Raad 2025-10-02 05:26:35 -04:00
parent b3177271d8
commit cc5cfc6b7d
2 changed files with 1 additions and 3 deletions

View file

@ -2,8 +2,6 @@ import { cmd } from "@/cli/cmd/cmd"
import { Instance } from "@/project/instance"
import path from "path"
import { Server } from "@/server/server"
import { Config } from "@/config/config"
import { InstanceBootstrap } from "@/project/bootstrap"
export const TuiCommand = cmd({
command: "$0 [project]",

View file

@ -45,7 +45,7 @@ export const Instance = {
await State.dispose(Instance.directory)
},
async disposeAll() {
for (const [key, value] of cache) {
for (const [_key, value] of cache) {
context.provide(value, async () => {
await Instance.dispose()
})