Hi, I wrote that blog post.
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!