chore: update findable-ui to v48 and node to 22.12.0 (#2877)#2878
Merged
chore: update findable-ui to v48 and node to 22.12.0 (#2877)#2878
Conversation
v48 and node to 22.12.0 (#2877)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Contributor
There was a problem hiding this comment.
Pull request overview
This pull request upgrades the project's infrastructure by updating Node.js from version 20.10.0 to 22.12.0 and upgrading the @databiosphere/findable-ui package to v48. This upgrade brings React 19, Next.js 15, and numerous other dependency updates to align with the new findable-ui version requirements.
Changes:
- Upgraded Node.js to version 22.12.0 across all configuration files and build scripts
- Updated @databiosphere/findable-ui to v48 with major version bumps for React (v19), Next.js (v15), and related dependencies
- Migrated MDX rehype/remark plugins from local implementation to findable-ui package exports
- Added explicit JSX type imports across all TypeScript component files for React 19 compatibility
- Simplified next.config.mjs by removing webpack aliases and ESM package transpilation list
Reviewed changes
Copilot reviewed 77 out of 79 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| package.json | Updated Node.js version to 22.12.0 and upgraded all major dependencies including React 19, Next 15, and findable-ui v48 |
| README.md | Updated Node.js version requirement to 22.12.0 in documentation |
| .github/workflows/run-checks.yml | Updated CI workflow to use Node.js 22.12.0 |
| cc-data.humancellatlas.dev.next.sh | Updated build script to use Node.js 22.12.0 |
| cgl-data.humancellatlas.prod.next.sh | Updated build script to use Node.js 22.12.0 |
| utils/docPages.ts | Updated plugin imports to use findable-ui package and modified remarkHeadings plugin API usage |
| plugins/remarkHeadings.ts | Deleted local implementation (moved to findable-ui) |
| plugins/rehypeSlug.ts | Deleted local implementation (moved to findable-ui) |
| plugins/common/utils.ts | Deleted local utilities (moved to findable-ui) |
| components/common/Typography/components/Heading/heading.tsx | Updated slugifyHeading import to use findable-ui package |
| site-config/data-portal/dev/navigation/entities.ts | Refactored NavigationNode interface to use type alias for picked properties |
| next.config.mjs | Removed webpack aliases and ESM packages list, simplified transpilePackages configuration |
| .gitignore | Added .claude/rules* to ignored files |
| Multiple component files (60+ files) | Added explicit JSX type imports for React 19 compatibility |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
NoopDog
approved these changes
Jan 26, 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.
Closes #2877.
This pull request primarily updates the project's Node.js version from 20.10.0 to 22.12.0 across documentation, CI workflows, and build scripts. Additionally, it standardizes the import of the
JSXtype from React in many TypeScript component files, improving type clarity and consistency.Node.js Version Upgrade:
README.md), CI workflow (.github/workflows/run-checks.yml), and build scripts (cc-data.humancellatlas.dev.next.sh,cgl-data.humancellatlas.prod.next.sh). [1] [2] [3] [4]React Type Imports Standardization:
JSXimports from React in numerous TypeScript component files to clarify and standardize JSX typing. This affects files such asattributions.tsx,detailCell.tsx,fieldCell.tsx,mainColumn.tsx(various locations),analysisPortalCell.tsx,sideColumn.tsx(various locations),dataReleasePolicy.tsx,hero.tsx,tabs.tsx,networkAtlasesEmpty.tsx,keyElType.tsx,keyValuesElType.tsx, andvalueElType.tsx. [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11] [12] [13] [14] [15] [16]