chore: upgrade postcss to 8.5.19#439
Open
msranjana wants to merge 1 commit into
Open
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR performs a dependency maintenance update across several JavaScript packages in the repo by upgrading postcss to ^8.5.19 and regenerating the associated npm/pnpm lockfiles where that override is applied.
Changes:
- Bump
postcssoverride to^8.5.19in the root and multiple subpackages/apps. - Refresh pnpm lockfiles for
vitepress-plugin-moss,moss-md-indexer, andlivekit-moss-vercel/agent-reactto reflectpostcss@8.5.19(and related transitive updates likenanoid). - Refresh npm
package-lock.jsonfiles for the root,moss-md-indexer,apps/next-js, andapps/moss-llamaindex/frontend.
Reviewed changes
Copilot reviewed 7 out of 15 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| packages/vitepress-plugin-moss/pnpm-lock.yaml | Updates lockfile to resolve postcss@8.5.19 under pnpm for the VitePress plugin package. |
| packages/vitepress-plugin-moss/package.json | Bumps pnpm overrides to postcss@^8.5.19. |
| packages/moss-md-indexer/pnpm-lock.yaml | Updates pnpm lockfile to postcss@8.5.19 (and updated transitive deps). |
| packages/moss-md-indexer/package.json | Bumps overrides and pnpm overrides to postcss@^8.5.19. |
| packages/moss-md-indexer/package-lock.json | Updates npm lockfile to resolve postcss@8.5.19 for this package. |
| packages/moss-md-indexer/example/pnpm-lock.yaml | Updates example pnpm lockfile to postcss@8.5.19. |
| packages/moss-md-indexer/example/package.json | Bumps pnpm overrides to postcss@^8.5.19. |
| package.json | Bumps root npm overrides to postcss@^8.5.19. |
| package-lock.json | Updates root npm lockfile to resolve postcss@8.5.19. |
| apps/next-js/package.json | Bumps overrides to postcss@^8.5.19. |
| apps/next-js/package-lock.json | Updates npm lockfile to resolve postcss@8.5.19. |
| apps/moss-llamaindex/frontend/package.json | Bumps overrides to postcss@^8.5.19. |
| apps/moss-llamaindex/frontend/package-lock.json | Updates npm lockfile to resolve postcss@8.5.19. |
| apps/livekit-moss-vercel/agent-react/pnpm-lock.yaml | Updates pnpm lockfile to resolve postcss@8.5.19. |
| apps/livekit-moss-vercel/agent-react/package.json | Bumps pnpm overrides to postcss@^8.5.19. |
Files not reviewed (7)
- apps/livekit-moss-vercel/agent-react/pnpm-lock.yaml: Generated file
- apps/moss-llamaindex/frontend/package-lock.json: Generated file
- apps/next-js/package-lock.json: Generated file
- packages/moss-md-indexer/example/pnpm-lock.yaml: Generated file
- packages/moss-md-indexer/package-lock.json: Generated file
- packages/moss-md-indexer/pnpm-lock.yaml: Generated file
- packages/vitepress-plugin-moss/pnpm-lock.yaml: Generated file
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
12
to
16
| "overrides": { | ||
| "esbuild": "^0.28.0", | ||
| "postcss": "^8.5.16", | ||
| "postcss": "^8.5.19", | ||
| "vite": "^6.4.2" | ||
| } |
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.
Pull Request Checklist
Description
This PR upgrades
postcssto^8.5.19in the relevant packages and refreshes the corresponding lockfiles (package-lock.jsonandpnpm-lock.yaml).I verified that the updated dependency is installed (
postcss@8.5.19) and confirmed the affected site builds successfully after the upgrade.Fixes #429
Type of Change