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
When you try to install the package using npm install qunit --dev it fails. This is a problem if you add node-qunit as a devDependency in your package.json, since the --dev options recursively installs development dependencies.
Quickfix: Instead of installing development dependencies automatically using --dev, just install qunit where needed.
The text was updated successfully, but these errors were encountered:
This is because I have bunker in dependencies and this is using expresso in dev for testing and expresso is using jscoverage which is a C lib. Old versions of node-qunit was also using jscoverage and I have dropped it, because a lot of people reported they can't install it and some other reasons.
bunker is in the dependency list already but not implemented yet.
So I don't see any way how to avoid it except of ask bunker or expresso guys to fix that.
When you try to install the package using
npm install qunit --dev
it fails. This is a problem if you add node-qunit as adevDependency
in yourpackage.json
, since the--dev
options recursively installs development dependencies.Quickfix: Instead of installing development dependencies automatically using
--dev
, just install qunit where needed.The text was updated successfully, but these errors were encountered: