Iterate over each workspace in the project.
import { project } from 'ember-apply';for await (let workspace of await project.eachWorkspace()) { // perform actions within this workspace} Copy
import { project } from 'ember-apply';for await (let workspace of await project.eachWorkspace()) { // perform actions within this workspace}
Iterate over each workspace in the project.