Yarn workspaces and Ember

Hi, I wrote that blog post. :grin:

If I’m reading this correctly:

My workspace root is the Ember app and all of the workspaces are subdirectories in lib under the Ember application.

… your project looks like this?

package.json # with "workspaces" config
ember-cli-build.js
app/
lib/
β”œβ”€β”€ some-package/
β”œβ”€β”€ β”œβ”€β”€  package.json
β”œβ”€β”€ β”œβ”€β”€  index.js
β”œβ”€β”€  another-package/
β”œβ”€β”€ β”œβ”€β”€  package.json
β”œβ”€β”€ β”œβ”€β”€  index.js

Yeah, I don’t think that’ll work. The top-level β€œpackage” shouldn’t be a real package and generally doesn’t have its own dependencies. You don’t have to nest projects under a β€œpackages” directory, but it’s very common in monorepos like babel so I used that as the example layout in the blog post.

My current project layout looks like this:

package.json
.eslintrc.js # and other dotfiles
team-one/
β”œβ”€β”€  engine-a/
β”œβ”€β”€ β”œβ”€β”€  package.json
β”œβ”€β”€ β”œβ”€β”€  index.js
β”œβ”€β”€ β”œβ”€β”€  addon/
β”œβ”€β”€  addon-b/
β”œβ”€β”€ β”œβ”€β”€  package.json
β”œβ”€β”€ β”œβ”€β”€  index.json
β”œβ”€β”€ β”œβ”€β”€  addon/
β”œβ”€β”€ β”œβ”€β”€  app/
team-two/
β”œβ”€β”€ β”œβ”€β”€  engine-c/
... # more packages
host-application/
β”œβ”€β”€  package.json
β”œβ”€β”€  ember-cli-build.js

The top-level package.json is just:

{
  "private": true,
  "workspaces": [
    "host-application",
    "team-one/*",
    "team-two/*"
  ]
}

Hope this helps!

1 Like