chore: remove examples directory and update dependencies and workflows#212
Merged
chore: remove examples directory and update dependencies and workflows#212
examples directory and update dependencies and workflows#212Conversation
…e should be managed separately
…ependabot configuration
- upgraded @vitejs/plugin-react from ^5.1.4 to ^6.0.1 - upgraded vite from ^7.3.1 to ^8.0.0
- update `pnpm/action-setup` to `v4.4.0` in `build-test` and `release` workflows - update `googleapis/release-please-action` to `v4.4.0` in `release` workflow
There was a problem hiding this comment.
Pull request overview
This PR updates the monorepo’s dependency/tooling configuration (pnpm + Vite ecosystem + jsdom) and CI workflows, while removing the examples/* workspace entry and related Dependabot configuration to simplify workspace management.
Changes:
- Remove
examples/*frompnpm-workspace.yamlpackages and bump catalog versions forviteand@vitejs/plugin-react. - Bump root
packageManagerpnpm version and updatejsdominlib. - Update GitHub Actions workflows to pin
pnpm/action-setupto a new commit SHA and remove the Dependabot update block forexamples/*.
Reviewed changes
Copilot reviewed 6 out of 7 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| pnpm-workspace.yaml | Drops examples/* from workspace and bumps Vite/plugin catalog versions. |
| package.json | Updates packageManager to pnpm 10.32.1 with new integrity hash. |
| lib/package.json | Updates jsdom dependency to ^29.0.0. |
| .github/workflows/release.yml | Updates pinned pnpm/action-setup SHA; adds version comment for release-please action line. |
| .github/workflows/build-test.yml | Updates pinned pnpm/action-setup SHA in test/build jobs. |
| .github/dependabot.yml | Removes the dedicated npm update config for /examples/*. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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.
Description
This pull request primarily updates dependencies and configuration files to keep the project up to date and simplify the workspace setup. The most notable changes include upgrading several dependencies, updating GitHub Actions to use specific tagged versions, and removing the
examples/*workspace and related configuration.Dependency and Workspace Updates:
pnpmto version10.32.1inpackage.jsonand updated the lockfile hash.pnpm-workspace.yaml:@vitejs/plugin-reactto^6.0.1andviteto^8.0.0.jsdomfrom^28.1.0to^29.0.0inlib/package.json.CI/CD Configuration Improvements:
pnpm/action-setup(v4.4.0) and added version comments for clarity in bothbuild-test.ymlandrelease.yml. [1] [2] [3] [4]Workspace and Dependency Management Cleanup:
examples/*workspace frompnpm-workspace.yamland deleted the relatednpmecosystem update configuration in.github/dependabot.yml, simplifying the workspace and dependency management. [1] [2]Checklist
Notes for Reviewers