feat(station): rollup catalog setting#1719
Merged
samchon merged 1 commit intofeat/monorepofrom Jan 26, 2026
Merged
Conversation
|
Review the following changes in direct dependencies. Learn more about Socket for GitHub.
|
Contributor
There was a problem hiding this comment.
Pull request overview
This pull request centralizes Rollup-related dependency management by introducing a pnpm catalog for rollup plugins and related packages. It also removes prettier and prettier-plugin dependencies from the package-level manifests (since they're maintained at the workspace root) and upgrades several Rollup plugins to newer major versions.
Changes:
- Added a
rollupcatalog topnpm-workspace.yamlwith standardized versions for all Rollup plugins and rollup itself - Updated
packages/openapi/package.jsonandpackages/typia/package.jsonto reference the rollup catalog instead of hardcoded versions - Removed prettier and prettier-related plugins from package-level devDependencies (maintained at root level)
- Upgraded Rollup plugins:
@rollup/plugin-commonjs(v26→v29),@rollup/plugin-node-resolve(v15→v16), and@rollup/plugin-typescript(v11→v12) - Cleaned up pnpm-lock.yaml by removing legacy/unused package entries and updating dependency trees
Reviewed changes
Copilot reviewed 3 out of 4 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| pnpm-workspace.yaml | Added rollup catalog with centralized version definitions for all Rollup-related dependencies |
| packages/openapi/package.json | Updated to use catalog references for Rollup dependencies; removed prettier dependencies |
| packages/typia/package.json | Updated to use catalog references for Rollup dependencies; removed prettier dependencies |
| pnpm-lock.yaml | Added rollup catalog section, updated plugin versions, removed unused package entries, and updated dependency trees |
Files not reviewed (1)
- pnpm-lock.yaml: Language not supported
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.
This pull request refactors the way Rollup-related devDependencies are managed in the
openapiandtypiapackages, centralizing their versioning via a pnpm catalog. It also removes several unused or redundant dependencies and updates the lockfile to reflect these changes, including upgrades to some Rollup plugins and cleanup of legacy or duplicate package entries.Dependency management improvements:
@rollup/plugin-*androllupdevDependencies inpackages/openapi/package.jsonandpackages/typia/package.jsonto use thecatalog:rollupspecifier, centralizing their version management. [1] [2]rollupcatalog topnpm-lock.yamlwith up-to-date versions for all Rollup-related plugins, ensuring consistent dependency versions across packages.Cleanup and modernization:
prettier,prettier-plugin-jsdoc, and@trivago/prettier-plugin-sort-importsfrom bothopenapiandtypiapackage manifests and the lockfile. [1] [2] [3] [4] [5] [6]@rollup/plugin-commonjs,@rollup/plugin-node-resolve,@rollup/plugin-typescript) and updated their dependency trees. [1] [2] [3]Lockfile and package tree cleanup:
pnpm-lock.yaml, such as older versions of@babel/traverse,@isaacs/cliui,@pkgjs/parseargs, and others, reducing lockfile bloat and potential for version conflicts. [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11] [12] [13] [14] [15] [16]