let deps getNrwlDep…

less than 1 minute read

```let deps = getNrwlDeps(‘app1’)

// deps would contain an array of all the current project and all the dependent apps/projects with the application root and src root console.log(deps)

/* [ { root: “apps/app1”, sourceRoot: ”apps/app1/src”, }, { root: “libs/lib1”, sourceRoot: ”libs/lib1/src”, }, { root: “libs/lib2”, sourceRoot: ”libs/lib2/src”, },

*/``` does this functionality exist?

Updated: