-
Notifications
You must be signed in to change notification settings - Fork 393
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
chore(deps): upgrade path-to-regexp
to address a security vulnerability
#2251
Conversation
3d5e0dc
to
46d282c
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #2251 +/- ##
=======================================
Coverage 87.78% 87.78%
=======================================
Files 19 19
Lines 1646 1646
Branches 464 464
=======================================
Hits 1445 1445
Misses 194 194
Partials 7 7 ☔ View full report in Codecov by Sentry. |
}, | ||
"scripts": { | ||
"prepare": "npm run build", | ||
"build": "tsc", |
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.
Ensure we clean out the dist/
directory of transpiled files to be published first before building.
@@ -21,12 +21,12 @@ | |||
"dist/**/*" | |||
], | |||
"engines": { | |||
"node": ">=12.13.0", | |||
"npm": ">=6.12.0" | |||
"node": ">=14.21.3", |
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.
These values are based on the node JS release schedule, and the latest patch version of node 14 that is available (but also EOL) as well as the npm version bundled with it.
@@ -1,68 +1,28 @@ | |||
{ | |||
"$schema": "https://json.schemastore.org/tsconfig", | |||
"compilerOptions": { | |||
/* Basic Options */ |
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.
Cleaning this file up so that JSON LSPs can deal with them - comments are not valid JSON.
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.
Thank you! Looks good to me
partially fixes #2242