deno_watchman
Usage
import Watchman from "https://deno.land/x/watchman/mod.ts";
const watchman = new Watchman();
console.log(await watchman.check();
client.end();
import { Client } from "https://deno.land/x/watchman/mod.ts";
const client = new Client();
console.log(
await client.capabilityCheck({ optional: [], required: ["relative_root"] }),
);
client.end();