We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
"resolutions"
package.json
rimraf
Hi,
I cloned the master branch and tried doing yarn install and then yarn test but seeing the following error -
yarn install
yarn test
This seems to be happening because the addon required rimraf version ^5.0.1 -
addon
^5.0.1
ember-test-helpers/addon/package.json
Line 104 in 3b83f12
but the "resolutions" in the root package.json restricts rimraf version to < 5.0.0 -
< 5.0.0
ember-test-helpers/package.json
Line 17 in 3b83f12
because of this, on doing yarn install a lower version of rimraf (version 4.x) is installed, than what is need for the addon module (version 5.x) -
I tried removing the rimraf entry from "resolutions" altogether and was able to run the tests.
Please let me know your thoughts on this. Should I create a PR for this?
The text was updated successfully, but these errors were encountered:
This is solved by this PR: #1453 waiting for review over there.
Sorry, something went wrong.
Closing this issue since PR #1453 has been merged.
No branches or pull requests
Hi,
I cloned the master branch and tried doing

yarn install
and thenyarn test
but seeing the following error -This seems to be happening because the
addon
requiredrimraf
version^5.0.1
-ember-test-helpers/addon/package.json
Line 104 in 3b83f12
but the
"resolutions"
in the rootpackage.json
restrictsrimraf
version to< 5.0.0
-ember-test-helpers/package.json
Line 17 in 3b83f12
because of this, on doing

yarn install
a lower version ofrimraf
(version 4.x) is installed, than what is need for the addon module (version 5.x) -I tried removing the
rimraf
entry from"resolutions"
altogether and was able to run the tests.Please let me know your thoughts on this. Should I create a PR for this?
The text was updated successfully, but these errors were encountered: