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
In a monorepo with one app running on 3.26 and others on 3.28, this check in @embroider/util returns true, as both @embroider/util and ember-source are in the hoisted main node_modules, while the app in question has its own version of Ember in its localnode_modules.
The text was updated successfully, but these errors were encountered:
This is a general thing -- dependencySatisfies makes the most sense with peerDeps (which can also be optional peerDeps). Because your own dependencies are generally known, and non-dependencies can't be reliably resolved.
It seems
dependencySatisfies
needs a similar fix as as emberjs/ember-cli-babel#396 and ember-cli/ember-cli-htmlbars#741.In a monorepo with one app running on 3.26 and others on 3.28, this check in
@embroider/util
returns true, as both@embroider/util
andember-source
are in the hoisted mainnode_modules
, while the app in question has its own version of Ember in its localnode_modules
.The text was updated successfully, but these errors were encountered: