Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
"eslint-plugin-prettier": "^5.0.0",
"husky": "9.1.7",
"jest": "^29.2.0",
"lint-staged": "16.2.3",
"lint-staged": "16.2.6",
Copy link
Contributor

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.

Suggested change
"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).

"mkdirp": "^1.0.3",
"npm-run-all2": "^7.0.1",
"prettier": "^3.0.0",
Expand All @@ -98,7 +98,7 @@
"stylelint-config-standard": "^34.0.0",
"stylelint-csstree-validator": "^3.0.0",
"stylelint-prettier": "^4.0.0",
"typescript": "~5.8.0",
"typescript": "~5.9.0",
"yjs": "^13.5.0"
},
"lint-staged": {
Expand Down
Loading