Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix
engines.test.js
for multiple potential versions (#197)
`npm view` can return an array or a single string depending on published versions. See below: ```console $ npm view --json stylelint@^15.9.0 engines.node [ "^14.13.1 || >=16.0.0", "^14.13.1 || >=16.0.0" ] ``` ```console $ npm view --json stylelint@^15.10.0 engines.node "^14.13.1 || >=16.0.0" ```
- Loading branch information