|
|
@@ -2,7 +2,6 @@ import { Plugin } from "../plugin"
|
|
|
import { Format } from "../format"
|
|
|
import { LSP } from "../lsp"
|
|
|
import { File } from "../file"
|
|
|
-import { FileWatcher } from "../file/watcher"
|
|
|
import { Snapshot } from "../snapshot"
|
|
|
import { Project } from "./project"
|
|
|
import { Vcs } from "./vcs"
|
|
|
@@ -11,6 +10,7 @@ import { Command } from "../command"
|
|
|
import { Instance } from "./instance"
|
|
|
import { Log } from "@/util/log"
|
|
|
import { BootstrapRuntime } from "@/effect/bootstrap-runtime"
|
|
|
+import { FileWatcher } from "@/file/watcher"
|
|
|
import { ShareNext } from "@/share/share-next"
|
|
|
|
|
|
export async function InstanceBootstrap() {
|
|
|
@@ -20,7 +20,7 @@ export async function InstanceBootstrap() {
|
|
|
void BootstrapRuntime.runPromise(Format.Service.use((svc) => svc.init()))
|
|
|
await LSP.init()
|
|
|
File.init()
|
|
|
- FileWatcher.init()
|
|
|
+ void BootstrapRuntime.runPromise(FileWatcher.Service.use((svc) => svc.init()))
|
|
|
Vcs.init()
|
|
|
Snapshot.init()
|
|
|
|