15 lines
562 B
Plaintext
15 lines
562 B
Plaintext
# Get Dependents Graph
|
|
|
|
[](https://changelogs.xyz/@changesets/get-dependents-graph)
|
|
|
|
Small helper utility extracted from bolt to get a graph of relationships between packages.
|
|
|
|
```ts
|
|
import { getDependentsGraph } from "@changesets/get-dependents-graph";
|
|
import { getPackages } from "@manypkg/get-packages";
|
|
|
|
let { graph, valid } = getDependentsGraph(await getPackages(cwd));
|
|
```
|
|
|
|
Mostly published for use in [changesets](https://www.npmjs.com/package/@changesets/cli)
|