Routine dependency management for clean NPM audit.#356
Merged
theengineear merged 1 commit intomainfrom Mar 25, 2026
Merged
Conversation
f8b9a09 to
3df208f
Compare
theengineear
commented
Mar 11, 2026
| predicted from developers (#351). | ||
|
|
||
| ### Fixed | ||
| - Explicitly setting `reflect` to `false` now works. Previously, setting this |
Collaborator
Author
There was a problem hiding this comment.
Whoops! Wrote this one twice — just doing some unrelated cleanup. It didn’t feel like it warranted a separate commit / PR…
theengineear
commented
Mar 11, 2026
| "esbuild": "0.27.3", | ||
| "eslint": "10.0.3", | ||
| "eslint-plugin-jsdoc": "62.7.1", | ||
| "globals": "17.4.0", |
Collaborator
Author
There was a problem hiding this comment.
Again, this is added explicitly now. We were always importing it in our eslint config… so we should have had this all along, really.
Collaborator
Author
|
@klebba — FYI, just doing some routine dependency management. I will be bumping our |
Just doing some routine dev dependency updating. Some notes: 1. New major TS 6.x version (we have to silence some stuff as a result). 2. New major ESLint 10.x version (have to make one dependency explicit).
3df208f to
00bd0eb
Compare
theengineear
commented
Mar 25, 2026
| "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.
I will tackle this one-by-one, elsewhere. Way too much noise to pull it into this PR.
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Of note, we needed to specifically depend on
globalsonce we updated ESLint. It used to be a transitive dependency, but it’s not anymore. This package is just a data blob of variables in different environments.