(msg: Msg)
| 17 | } |
| 18 | |
| 19 | function run(msg: Msg) { |
| 20 | return Process.run([process.execPath, worker, JSON.stringify(msg)], { |
| 21 | cwd: root, |
| 22 | nothrow: true, |
| 23 | }) |
| 24 | } |
| 25 | |
| 26 | async function plugin(dir: string, kinds: Array<"server" | "tui">) { |
| 27 | const p = path.join(dir, "plugin") |
no test coverage detected