-
Notifications
You must be signed in to change notification settings - Fork 19
Routine dependency management for clean NPM audit. #356
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -49,13 +49,14 @@ | |
| ], | ||
| "devDependencies": { | ||
| "@netflix/eslint-config": "3.0.0", | ||
| "@netflix/x-test": "2.0.0-rc.2", | ||
| "@netflix/x-test": "2.0.0-rc.6", | ||
| "@netflix/x-test-cli": "1.0.0-rc.2", | ||
| "esbuild": "0.27.0", | ||
| "eslint": "9.39.0", | ||
| "eslint-plugin-jsdoc": "61.1.11", | ||
| "puppeteer": "24.27.0", | ||
| "typescript": "5.9.3" | ||
| "esbuild": "0.27.4", | ||
| "eslint": "10.1.0", | ||
| "eslint-plugin-jsdoc": "62.8.0", | ||
| "globals": "17.4.0", | ||
|
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Again, this is added explicitly now. We were always importing it in our eslint config… so we should have had this all along, really. |
||
| "puppeteer": "24.40.0", | ||
| "typescript": "6.0.2" | ||
| }, | ||
| "engines": { | ||
| "node": ">=22.14", | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -20,6 +20,11 @@ | |
| // https://www.typescriptlang.org/docs/handbook/declaration-files/dts-from-js.html | ||
| "declarationMap": true, | ||
| "noEmitOnError": true, | ||
| "module": "NodeNext" // Approximates browser target. | ||
| "module": "NodeNext", // Approximates browser target. | ||
| // TODO: #357: Fix strict type errors. | ||
|
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I will tackle this one-by-one, elsewhere. Way too much noise to pull it into this PR. |
||
| "noImplicitAny": false, | ||
| "strictNullChecks": false, | ||
| "useUnknownInCatchVariables": false, | ||
| "strictFunctionTypes": false | ||
| } | ||
| } | ||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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.
Whoops! Wrote this one twice — just doing some unrelated cleanup. It didn’t feel like it warranted a separate commit / PR…