Hi there!
I've tried running ember-try within a monorepo with yarn workspaces but I couldn't get it to work. I always go the error No ember-cli-build.js found.. This makes total sense to me, since the _runCommand method always uses the project root:
|
_runCommand(options) { |
|
return runCommand(this.project.root, options.commandArgs, options.commandOptions); |
|
}, |
Shouldn't this take the root of the current workspace? Is there an example of a project using the workspaces feature?
Hi there!
I've tried running
ember-trywithin a monorepo with yarn workspaces but I couldn't get it to work. I always go the errorNo ember-cli-build.js found.. This makes total sense to me, since the_runCommandmethod always uses the project root:ember-try/lib/tasks/try-each.js
Lines 130 to 132 in 61fed6b
Shouldn't this take the root of the current workspace? Is there an example of a project using the workspaces feature?