| 123456789101112131415161718192021222324252627 |
- import { Plugin } from "../plugin"
- import { Share } from "../share/share"
- import { Format } from "../format"
- import { LSP } from "../lsp"
- import { FileWatcher } from "../file/watcher"
- import { File } from "../file"
- import { Flag } from "../flag/flag"
- import { Project } from "./project"
- import { Bus } from "../bus"
- import { Command } from "../command"
- import { Instance } from "./instance"
- export async function InstanceBootstrap() {
- if (Flag.OPENCODE_EXPERIMENTAL_NO_BOOTSTRAP) return
- await Plugin.init()
- Share.init()
- Format.init()
- await LSP.init()
- FileWatcher.init()
- File.init()
- Bus.subscribe(Command.Event.Executed, async (payload) => {
- if (payload.properties.name === Command.Default.INIT) {
- await Project.setInitialized(Instance.project.id)
- }
- })
- }
|