deno_doc 0.198.0

doc generation for deno
Documentation
# old/mod.ts
export const foo: string = "";

# new/mod.ts
export const bar: string = "";

# output.json
{
  "modifiedModules": {
    "file:///mod.ts": {
      "modified": [
        {
          "name": "bar",
          "nameChange": {
            "old": "foo",
            "new": "bar"
          }
        }
      ]
    }
  }
}