Requesting a new release to be able to use qunit ^2.10.0
ventuno opened this issue · 3 comments
ventuno commented
Would it be possible to cut a new release of ember-qunit
? I'm interested the updated version of qunit
^2.10.0 which changes the way only
works.
If there's anything I can help with to make the process smoother, I'd be happy to help.
scalvert commented
cc @rwjblue - it looks like master already has the needed version, so no PR required. Just a release needed.
rwjblue commented
2.10 is already allowed by the current range, there isn't a release required for y'all to grab it. Most likely you just need to update your lock file. For example, with yarn
I would usually suggest one of the following:
rm yarn.lock node_modules && yarn
(reroll your yarn.lock completely)yarn remove ember-qunit && yarn add ember-qunit
- add resolutions for
"qunit": "^2.10.0"
, run yarn, then remove the resolution, run yarn again
There may be other / nicer ways, but these are the common ones I've used...
ventuno commented
Good point. Closing :-).