Docs/Reference/CLI/workspaces/list

yarn workspaces list

List the workspaces in the project

yarn workspaces list

This command will print the list of all workspaces in the project.

  • If --since is set, Yarn will only list workspaces that have been modified since the specified ref. By default Yarn will use the refs specified by the `changesetBaseRefs configuration option.

  • If -R,--recursive is set along with --since, Yarn will also list workspaces that depend on workspaces that have been changed since the specified ref, recursively following dependencies and devDependencies fields.

  • If --no-private is set, Yarn will not list any workspaces that have the private field set to true.

If both the -v,--verbose and --json options are set, Yarn will also return the cross-dependencies between each workspaces (useful when you wish to automatically generate Bazel rules).

#--verbose, -vboolean

Also return the cross-dependencies between workspaces

#--privateboolean

Also list private workspaces

#--sincestring

Only include workspaces that have been changed since the specified ref

#--recursive, -Rboolean

Follow dependencies

#--jsonboolean

Format the output as an NDJSON stream

#--tree-hashboolean

Include a hash of the workspace’s dependency tree (requires —json)