Skip to content

chore: update vite-plus to ^0.1.1#673

Merged
fengmk2 merged 6 commits intomasterfrom
chore/update-vite-plus-0.1.1
Mar 6, 2026
Merged

chore: update vite-plus to ^0.1.1#673
fengmk2 merged 6 commits intomasterfrom
chore/update-vite-plus-0.1.1

Conversation

@fengmk2
Copy link
Member

@fengmk2 fengmk2 commented Mar 6, 2026

Changes

  • Update vite-plus and related packages from latest to ^0.1.1
  • Remove oxlint extends from vite.config.ts (oxlint 1.51.0 no longer supports string paths in extends; all rules were already overridden locally)
  • Remove unused @eggjs/oxlint-config dependency
  • Remove redundant top-level overrides (only pnpm.overrides is needed)
  • Rename CI job from typecheck to check

Node engine compatibility

vite-plus 0.1.1 dev tooling requires Node >=20, but this only affects development. The library itself (urllib) still supports Node >=18.19.0 at runtime. CI already tests only Node 20/22/24/25.

Summary by CodeRabbit

  • Chores
    • Pinned previously dynamic "latest" dependency specs to explicit semantic versions (^0.1.1) for build and test tooling to ensure consistent installs.
    • Removed an unused dev dependency declaration.
    • Renamed an internal CI job and updated its concurrency grouping to match the new name.
    • Removed an explicit lint configuration entry so linting will rely on the project's default configuration.

Copilot AI review requested due to automatic review settings March 6, 2026 11:48
@gemini-code-assist
Copy link

Summary of Changes

Hello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

This pull request focuses on a routine dependency upgrade, specifically targeting the vite-plus ecosystem of packages. The primary goal is to standardize the versioning of these packages to ^0.1.1 across all relevant configuration files, moving away from the less precise latest tag. This ensures that the project benefits from the latest stable features and fixes of these libraries while maintaining predictable dependency management.

Highlights

  • Dependency Updates: The vite-plus package and its related components (@voidzero-dev/vite-plus-core, @voidzero-dev/vite-plus-test) have been updated from latest to ^0.1.1 across devDependencies, overrides, and pnpm.overrides.
  • Lockfile Synchronization: The pnpm-lock.yaml file has been updated to reflect the new 0.1.1 versions for all vite-plus related packages, ensuring consistency in dependency resolution.
Changelog
  • package.json
    • Updated vite-plus and vitest (aliased to @voidzero-dev/vite-plus-test) in devDependencies from latest to ^0.1.1.
    • Updated vite (aliased to @voidzero-dev/vite-plus-core) and vitest (aliased to @voidzero-dev/vite-plus-test) in overrides from latest to ^0.1.1.
    • Updated vite and vitest in pnpm.overrides from latest to ^0.1.1.
  • pnpm-lock.yaml
    • Updated vite and vitest in the top-level overrides section to ^0.1.1.
    • Synchronized various vite-plus related package versions and their integrity hashes from 0.0.2-g3cb78c3c.20260305-0800 to 0.1.1 across the lockfile.
Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

@coderabbitai
Copy link

coderabbitai bot commented Mar 6, 2026

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: 75e91d57-7dac-4f4d-898e-fb4481325d69

📥 Commits

Reviewing files that changed from the base of the PR and between ea14705 and e230f71.

📒 Files selected for processing (1)
  • package.json
🚧 Files skipped from review as they are similar to previous changes (1)
  • package.json

📝 Walkthrough

Walkthrough

Changed dev tooling pins in package.json from floating latest to ^0.1.1, removed a lint extends entry from vite.config.ts, and renamed the CI job typecheckcheck (updating its concurrency group).

Changes

Cohort / File(s) Summary
Package manifest
package.json
Removed devDependency @eggjs/oxlint-config; pinned vite-plus and vitest devDependencies from latest/npm:...@latest to npm:...@^0.1.1.
Overrides / pnpm overrides
package.json
Updated overrides and pnpm.overrides mappings for vite and vitest from npm:@voidzero-dev/...@latestnpm:@voidzero-dev/...@^0.1.1.
CI workflow
.github/workflows/nodejs.yml
Renamed job typecheckcheck and changed the concurrency.group prefix to check-${{ github.workflow }}-#....
Vite config linting
vite.config.ts
Removed explicit lint extends entry referencing ./node_modules/@eggjs/oxlint-config/.oxlintrc.json.

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~10 minutes

Possibly related PRs

Poem

🐰 I nibbled at package.json tonight,
Replaced wild tags with pins just right,
CI found a new name, lint lost one line,
A tidy hop forward — quick, and fine. 🥕

🚥 Pre-merge checks | ✅ 3
✅ Passed checks (3 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The PR title accurately summarizes the main change: updating vite-plus and related dependencies from 'latest' to '^0.1.1'.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch chore/update-vite-plus-0.1.1

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

@socket-security
Copy link

socket-security bot commented Mar 6, 2026

Review the following changes in direct dependencies. Learn more about Socket for GitHub.

Diff Package Supply Chain
Security
Vulnerability Quality Maintenance License
Updated@​voidzero-dev/​vite-plus-test@​0.0.2-g3cb78c3c.20260305-0800 ⏵ 0.1.181 +510077 +199 +1100
Updatedvite-plus@​0.0.2-g3cb78c3c.20260305-0800 ⏵ 0.1.181 +1100100 +1100 +1100

View full report

@codecov
Copy link

codecov bot commented Mar 6, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 92.77%. Comparing base (774a532) to head (ca56c8f).
⚠️ Report is 1 commits behind head on master.

Additional details and impacted files
@@           Coverage Diff           @@
##           master     #673   +/-   ##
=======================================
  Coverage   92.77%   92.77%           
=======================================
  Files          10       10           
  Lines         747      747           
  Branches      233      233           
=======================================
  Hits          693      693           
  Misses         51       51           
  Partials        3        3           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

Copy link

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request updates vite-plus and related packages from the latest tag to a specific version range (^0.1.1). This is a good practice for ensuring reproducible builds. The changes are consistent across package.json and pnpm-lock.yaml. I have one suggestion to reduce redundancy in your package.json configuration.

Copy link

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Updates the repo’s Vite/Vitest “vite-plus” toolchain pinning from latest to a semver range (^0.1.1) across dependency declarations and lockfile resolution to make installs reproducible and avoid floating “latest” behavior.

Changes:

  • Bump vite-plus, @voidzero-dev/vite-plus-core (via overrides), and @voidzero-dev/vite-plus-test (via vitest alias) from latest to ^0.1.1 in package.json.
  • Regenerate pnpm-lock.yaml to reflect the new resolved 0.1.1 artifacts and updated override mappings.

Reviewed changes

Copilot reviewed 1 out of 2 changed files in this pull request and generated 3 comments.

File Description
package.json Switch devDependencies/overrides/pnpm.overrides from latest to ^0.1.1 for the vite-plus toolchain.
pnpm-lock.yaml Update lockfile overrides and resolved package snapshots to 0.1.1 for the vite-plus packages.
Files not reviewed (1)
  • pnpm-lock.yaml: Language not supported

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

fengmk2 added 2 commits March 6, 2026 19:54
The string-based extends in oxlint config is no longer supported in
oxlint 1.51.0 (bundled with vite-plus 0.1.1). Since all categories and
rules are already configured locally, the extends was effectively a no-op.
Copilot AI review requested due to automatic review settings March 6, 2026 11:55
@pkg-pr-new
Copy link

pkg-pr-new bot commented Mar 6, 2026

Open in StackBlitz

npm i https://pkg.pr.new/node-modules/urllib@673

commit: 5c2a3b5

Copy link

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Copilot reviewed 3 out of 4 changed files in this pull request and generated 4 comments.

Files not reviewed (1)
  • pnpm-lock.yaml: Language not supported

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Copilot AI review requested due to automatic review settings March 6, 2026 12:02
Copy link

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Copilot reviewed 3 out of 4 changed files in this pull request and generated 2 comments.

Files not reviewed (1)
  • pnpm-lock.yaml: Language not supported

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

@fengmk2 fengmk2 enabled auto-merge March 6, 2026 12:11
@fengmk2 fengmk2 merged commit 7dc9af9 into master Mar 6, 2026
23 checks passed
@fengmk2 fengmk2 deleted the chore/update-vite-plus-0.1.1 branch March 6, 2026 12:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants