0.2.0 • Published 4 years ago

yarn-workspaces-list v0.2.0

Weekly downloads
472
License
MIT
Repository
github
Last release
4 years ago

yarn-workspaces-list

List all available workspaces using the format from yarn workspaces list --verbose --json from yarn v2.

const { listWorkspaces } = require('yarn-workspaces-list');

const list = await listWorkspaces();
$ workspaces-list

{"location":".","name":"@workspace/monorepo","workspaceDependencies":[],"mismatchedWorkspaceDependencies":[]}
{"location":"packages/a","name":"@workspace/a",...}
{"location":"packages/b","name":"@workspace/b","workspaceDependencies":["packages/a"],...}