-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adjust node engine requirements to be less restrictive (#39)
* Update node engine requirement in package.json Updated engine required to work with node v16 or higher * 1.0.0-pre2 --------- Co-authored-by: Michael Weichert <mweichert.com>
- Loading branch information
Michael Weichert
authored
Feb 9, 2023
1 parent
4c41a45
commit ba06dcd
Showing
2 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
"author": "Felix Geisendörfer <[email protected]> (http://debuggable.com/)", | ||
"name": "stack-trace", | ||
"description": "Get v8 stack traces as an array of CallSite objects.", | ||
"version": "1.0.0-pre1", | ||
"version": "1.0.0-pre2", | ||
"homepage": "https://github.com/felixge/node-stack-trace", | ||
"repository": { | ||
"type": "git", | ||
|
@@ -25,7 +25,7 @@ | |
"release": "git push && git push --tags && npm publish" | ||
}, | ||
"engines": { | ||
"node": "16" | ||
"node": ">=16" | ||
}, | ||
"license": "MIT", | ||
"devDependencies": { | ||
|