## 2018-04-13 Module Dependency Tree

```
lively.reloadModule('test/a.js')
lively.findDependentModules('test/a.js', true)
lively.findDependentModulesGraph('utils')

import 'test/a.js'
import 'test/b.js'
import 'test/c.js'
lively.findDependentModulesGraph('test/a.js')
```

E.g.: here are the dependencies of `utils`:

<script>
(async () => {
  let graph = await lively.findDependentModulesGraph('utils')
  
  var inspector = await (<lively-inspector></lively-inspector>)
  inspector.inspect(graph)
  inspector.hideWorkspace()
  return inspector
})()
</script>
