refactor(file): destroy FileWatcher facade (#22091)

This commit is contained in:
Kit Langton
2026-04-11 21:19:12 -04:00
committed by GitHub
parent 17b2900884
commit 824c12c01a
4 changed files with 6 additions and 11 deletions

View File

@@ -1,9 +1,10 @@
import { Layer, ManagedRuntime } from "effect"
import { memoMap } from "./run-service"
import { FileWatcher } from "@/file/watcher"
import { Format } from "@/format"
import { ShareNext } from "@/share/share-next"
export const BootstrapLayer = Layer.mergeAll(Format.defaultLayer, ShareNext.defaultLayer)
export const BootstrapLayer = Layer.mergeAll(Format.defaultLayer, ShareNext.defaultLayer, FileWatcher.defaultLayer)
export const BootstrapRuntime = ManagedRuntime.make(BootstrapLayer, { memoMap })