Skip to content

Commit

Permalink
package.json: fix invalid syntax in engines (#1666)
Browse files Browse the repository at this point in the history
`!` is not supported by the semver library. This fixes a regression in v7
when used with engine-strict mode.

While the change in this PR may look similar to the state before #1660, 
it differs by using two pipe characters instead of one.
  • Loading branch information
glasser authored Jan 11, 2022
1 parent 18980ed commit e7acafb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
"zuul": "^3.12.0"
},
"engines": {
"node": ">=6.4.0 !13"
"node": ">=6.4.0 <13 || >=14"
},
"homepage": "https://github.com/visionmedia/superagent",
"husky": {
Expand Down

0 comments on commit e7acafb

Please sign in to comment.