fix(release): security hardening via dependency updates#117
Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
- Created a new `documents.js` file to define the structure and navigation of documents. - Updated `tsconfig.json` to set `baseUrl`, change `moduleResolution` to `bundler`, and enable `ignoreDeprecations`. - Modified `tsconfig.scripts.json` to use `nodenext` for `module` and `moduleResolution`, added `types`, and expanded the `include` paths. - Refactored `toTitleCase` utility function for clarity in variable naming.
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 primarily updates several dependencies to their latest versions and reorders named exports in multiple UI component files to follow a consistent pattern. The dependency updates help keep the project current and secure, while the export reordering improves code clarity and maintainability.
Dependency Updates:
Updated several dependencies in
package.json, includingnextto 16.2.1,@next/third-partiesto 16.2.1,@tailwindcss/postcssandtailwindcssto 4.2.2,@biomejs/biometo 2.4.8, and@types/nodeto 25.5.0. [1] [2] [3]Updated the
$schemareference inbiome.jsonto version 2.4.8 for compatibility with the latest Biome tooling.Code Quality and Consistency:
accordion.tsx,breadcrumb.tsx,collapsible.tsx,dropdown-menu.tsx,sheet.tsx,table.tsx,tabs.tsx) to maintain a consistent and alphabetical export order, improving code readability and reducing merge conflicts. [1] [2] [3] [4] [5] [6] [7]