chore: migrate from npm to pnpm#240
Merged
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
Migrates the repository from npm to pnpm, updating project metadata and CI to use pnpm and committing the pnpm lockfile. The PR also includes regenerated DevExpress ThemeBuilder CSS outputs (likely due to resolved dependency patch updates during lockfile migration).
Changes:
- Add pnpm
packageManagermetadata and update scripts/overrides handling inpackage.json - Update GitHub Actions deploy workflow to install/cache with pnpm and use
pnpm install --frozen-lockfile - Replace npm lockfile with
pnpm-lock.yaml(and update gitignore for pnpm logs), plus regenerated theme CSS outputs
Reviewed changes
Copilot reviewed 2 out of 9 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| package.json | Pins pnpm via packageManager, updates postinstall, and moves overrides to pnpm.overrides. |
| pnpm-lock.yaml | Adds pnpm lockfile for deterministic installs under pnpm. |
| .github/workflows/deploy.yml | Switches CI install/build steps from npm to pnpm and enables pnpm caching. |
| .gitignore | Ignores pnpm-debug.log. |
| src/themes/generated/theme.base.css | Regenerated ThemeBuilder output (includes version bump to 25.2.6 and large styling changes). |
| src/themes/generated/theme.additional.css | Regenerated ThemeBuilder output (version bump and style deltas). |
| src/themes/generated/theme.additional.dark.css | Regenerated ThemeBuilder output (version bump and style deltas). |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
dmlvr
approved these changes
Apr 17, 2026
alexslavr
approved these changes
Apr 17, 2026
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.
Migrate from npm to pnpm package manager.
Changes
packageManagerfield, replacednpm runwithpnpm runin scripts, movedoverridestopnpm.overridespnpm/action-setup@v4, replacedactions/cachewith built-incache: 'pnpm', replacednpm ciwithpnpm install --frozen-lockfile, replacednpm runwithpnpm runpnpm-debug.logpackage-lock.jsonwithpnpm-lock.yamlVerification
pnpm install✅pnpm run build✅