You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I had forgotten about this until I recently began cleaning up EmberData's root package.json and hit the issue again. This project requires re-declaring all ember-cli and ember-source deps into monorepo-root in order for it to resolve them. It needs instead to properly resolve dependencies from the workspace root.
The text was updated successfully, but these errors were encountered:
@SergeAstapov I'm not entirely sure which thing in this project results in the problem, but if you want to replicate on EmberData main remove ember-cli and/or ember-source from the root package.json and immediately the fastboot test app in tests/fastboot will blow up on build/test if ember-cli-fastboot-testing is still installed.
The error you get will be around bower no longer being supported, which happens because ember-cli does a version-check for bower if ember-source is not found.
I believe this indicates that there is some attempted determination of project-root for require.resolve that fails when the git root is different than the workspace root. This could well be the line you just linked to.
I had forgotten about this until I recently began cleaning up EmberData's root package.json and hit the issue again. This project requires re-declaring all ember-cli and ember-source deps into monorepo-root in order for it to resolve them. It needs instead to properly resolve dependencies from the workspace root.
The text was updated successfully, but these errors were encountered: