-
Notifications
You must be signed in to change notification settings - Fork 0
chore(deps): update devdependencies #37
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
base: main
Are you sure you want to change the base?
Conversation
|
📝 WalkthroughWalkthroughBumps devDependencies in package.json: TypeScript from Sequence Diagram(s)Not applicable — no control-flow or feature changes. Possibly related PRs
Suggested reviewers
Pre-merge checks❌ Failed checks (1 warning)
✅ Passed checks (2 passed)
📜 Recent review detailsConfiguration used: CodeRabbit UI Review profile: ASSERTIVE Plan: Pro Disabled knowledge base sources:
📒 Files selected for processing (1)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (1)
🔇 Additional comments (1)
Comment |
|
fefeb89 to
407d875
Compare
407d875 to
a5f66d8
Compare
a5f66d8 to
eaa7d05
Compare
4c48b02 to
c235db3
Compare
1d7bc8e to
2a904e9
Compare
531f6a3 to
8161a8a
Compare
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.
Actionable comments posted: 1
📜 Review details
Configuration used: CodeRabbit UI
Review profile: ASSERTIVE
Plan: Pro
Disabled knowledge base sources:
- Linear integration is disabled by default for public repositories
You can enable these sources in your CodeRabbit configuration.
📒 Files selected for processing (1)
package.json(2 hunks)
🔇 Additional comments (1)
package.json (1)
101-101: Test TypeScript 5.9.0 with your build and linting workflow.TypeScript 5.9.0 introduces behavioral changes that could surface new type errors: DOM library updates, type inference improvements, and module semantics additions. These typically require updating @types/* packages, adding explicit types, or adjusting tsconfig/module settings.
Run your build and lint checks to confirm strict @typescript-eslint rules and your codebase handle these changes without introducing new errors.
| "husky": "9.1.7", | ||
| "jest": "^29.2.0", | ||
| "lint-staged": "16.2.3", | ||
| "lint-staged": "16.2.6", |
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.
🧹 Nitpick | 🔵 Trivial
Consider using semver range for lint-staged instead of exact pin.
lint-staged uses exact version pinning (16.2.6) while other devDependencies use semver ranges (caret/tilde). For a patch-version bump, exact pinning prevents automatic patch updates. Consider using ^16.2.6 or ~16.2.6 to allow future security patches.
- "lint-staged": "16.2.6",
+ "lint-staged": "^16.2.6",📝 Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.
| "lint-staged": "16.2.6", | |
| "lint-staged": "^16.2.6", |
🤖 Prompt for AI Agents
In package.json around line 89, the devDependency "lint-staged" is pinned to an
exact version ("16.2.6"); change it to a semver range such as "^16.2.6" (or
"~16.2.6" if you prefer only patch updates) so patch/compatible updates are
allowed, then run npm/yarn install to update the lockfile (package-lock.json or
yarn.lock).
2b554b0 to
d3cb29d
Compare
d3cb29d to
9585532
Compare
This PR contains the following updates:
16.2.3->16.2.6~5.8.0->~5.9.0Warning
Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
Release Notes
lint-staged/lint-staged (lint-staged)
v16.2.6Compare Source
Patch Changes
33d4502Thanks @Adrian-Baran-GY! - Fix problems with--continue-on-erroroption, where tasks might have still been killed (SIGINT) when one of them failed.v16.2.5Compare Source
Patch Changes
9e02d9dThanks @iiroj! - Fix unhandled promise rejection when spawning tasks (instead of the tasks themselves failing). Previously when a task failed to spawn, lint-staged also failed and the backup stash might not have been automatically restored.v16.2.4Compare Source
Patch Changes
#1682
0176038Thanks @iiroj! - Update dependencies, including[email protected]with bug fixes.#1671
581a54eThanks @iiroj! - Speed up execution by only importing theyamldepedency if using YAML configuration files.microsoft/TypeScript (typescript)
v5.9.3: TypeScript 5.9.3Compare Source
Note: this tag was recreated to point at the correct commit. The npm package contained the correct content.
For release notes, check out the release announcement
Downloads are available on:
v5.9.2: TypeScript 5.9Compare Source
Note: this tag was recreated to point at the correct commit. The npm package contained the correct content.
For release notes, check out the release announcement
Downloads are available on:
Configuration
📅 Schedule: Branch creation - "every weekend" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.
Summary by CodeRabbit