My current config is:
"@vue/test-utils": "^1.0.0-beta.25"
How can make it exclude a specific version of this package while still using the caret ^
rages?
The version which I want to exclude is 1.0.0-beta.31
, because this version currently broke my entire tests.
My current config is:
"@vue/test-utils": "^1.0.0-beta.25"
How can make it exclude a specific version of this package while still using the caret ^
rages?
The version which I want to exclude is 1.0.0-beta.31
, because this version currently broke my entire tests.
1 Answer
Reset to default 8I believe the syntax is something like as follows:
"@vue/test-utils": ">1.0.0-beta.25 <1.0.0-beta.31 || ^1.0.0-beta.32"
You can find the rules for version resolution here.