-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: remove upper bound for node engine semver #49
Conversation
Codecov Report
@@ Coverage Diff @@
## master #49 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 1 1
Lines 183 183
Branches 30 30
=========================================
Hits 183 183 Continue to review full report at Codecov.
|
Interesting node-fetch changed the engine requirements to be |
@pimlie What do you see as a downside of just |
@xxczaki It's a serious bug, we will need to release a patch version after merging this (as it may preventing install of |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would love to see this in sync with current version of node-fetch
- do you see any problem with versions 11.x to be included?
@@ -20,7 +20,7 @@ | |||
"node-fetch" | |||
], | |||
"engines": { | |||
"node": "^10.17.0" | |||
"node": "^10.17.0 || >=12.3.0" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"node": "^10.17.0 || >=12.3.0" | |
"node": ">=10.17" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is what I added at first btw, but changed it due to the lint error. Not sure if v11 also supports it, I trusted the lint error to specify the correct minimum version
@tinovyatkin We will also need to release a new beta version of |
@xxczaki No, |
@tinovyatkin See the first lint error, it said: |
Released |
@pimlie Thank you for your contribution! |
Resolves: #48
/cc @tinovyatkin