-
Notifications
You must be signed in to change notification settings - Fork 2
chore(deps): update all non-major dependencies #65
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -35,18 +35,18 @@ | |
| }, | ||
| "devDependencies": { | ||
| "@playwright/test": "^1.60.0", | ||
| "@rsbuild/core": "^2.0.9", | ||
| "@rsbuild/core": "^2.0.14", | ||
| "@rsbuild/plugin-react": "^2.0.1", | ||
| "@rsbuild/plugin-type-check": "^1.3.5", | ||
| "@rslib/core": "^0.22.0", | ||
| "@rsbuild/plugin-type-check": "^1.4.0", | ||
| "@rslib/core": "^0.22.1", | ||
| "@rslint/core": "^0.6.1", | ||
| "@types/node": "^24.12.4", | ||
| "@types/react": "^19.2.15", | ||
| "@types/node": "^24.13.2", | ||
| "@types/react": "^19.2.17", | ||
|
Comment on lines
+43
to
+44
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. 🧩 Analysis chain🏁 Script executed: #!/bin/bash
# Description: Verify that the type definitions and formatter package versions exist on npm registry.
for pkg_ver in "`@types/node`@24.13.2" "`@types/react`@19.2.17" "prettier@3.8.4"; do
echo "Checking $pkg_ver..."
curl -sL "https://registry.npmjs.org/${pkg_ver%@*}" | jq -e ".versions.\"${pkg_ver#*@}\"" > /dev/null
if [ $? -eq 0 ]; then
echo "✓ $pkg_ver exists"
else
echo "✗ $pkg_ver NOT FOUND"
fi
doneRepository: rstackjs/rsbuild-plugin-source-build Length of output: 261 🏁 Script executed: #!/bin/bash
# Description: Check for security advisories on type definitions and formatter packages.
for pkg in "`@types/node`" "`@types/react`" "prettier"; do
echo "Checking advisories for $pkg..."
gh api graphql -f query="
{
securityVulnerabilities(first: 5, ecosystem: NPM, package: \"$pkg\") {
nodes {
advisory {
summary
severity
publishedAt
}
vulnerableVersionRange
firstPatchedVersion {
identifier
}
}
}
}" | jq '.data.securityVulnerabilities.nodes'
doneRepository: rstackjs/rsbuild-plugin-source-build Length of output: 345
The version bumps for 🤖 Prompt for AI Agents |
||
| "@types/react-dom": "^19.2.3", | ||
| "playwright": "^1.60.0", | ||
| "prettier": "^3.8.3", | ||
| "react": "^19.2.6", | ||
| "react-dom": "^19.2.6", | ||
| "prettier": "^3.8.4", | ||
| "react": "^19.2.7", | ||
| "react-dom": "^19.2.7", | ||
| "simple-git-hooks": "^2.13.1", | ||
| "typescript": "6.0.3" | ||
| }, | ||
|
|
@@ -58,7 +58,7 @@ | |
| "optional": true | ||
| } | ||
| }, | ||
| "packageManager": "pnpm@11.5.0", | ||
| "packageManager": "pnpm@11.6.0", | ||
| "publishConfig": { | ||
| "access": "public", | ||
| "registry": "https://registry.npmjs.org/" | ||
|
|
||
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.
🧩 Analysis chain
🏁 Script executed:
Repository: rstackjs/rsbuild-plugin-source-build
Length of output: 360
🏁 Script executed:
Repository: rstackjs/rsbuild-plugin-source-build
Length of output: 448
🏁 Script executed:
Repository: rstackjs/rsbuild-plugin-source-build
Length of output: 475
🏁 Script executed:
Repository: rstackjs/rsbuild-plugin-source-build
Length of output: 508
Fix non-existent package versions in devDependencies.
Verification reveals critical issues with pinned versions:
@rsbuild/core@2.0.14does not exist on npm; latest available is2.0.9@rslib/core@0.22.1does not exist on npm; latest available is0.9.2(verify this is the correct package)@rsbuild/plugin-type-check@1.4.0exists ✓@rslint/core@0.6.1exists ✓Installation will fail with the non-existent versions. Downgrade
@rsbuild/coreto2.0.9and correct@rslib/core(verify the intended version and package name).🤖 Prompt for AI Agents