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 includes various updates to configuration files and code refactoring to improve import paths and dependencies. The most important changes include updates to
.vscode
settings, import path adjustments across multiple files, and the addition of new dependencies inpackage.json
.Configuration Updates:
.prettierrc
: Adjusted import order regex patterns to ensure correct ordering..vscode/settings.json
: Modified color customizations, code actions on save, and added Prettier configurations. [1] [2].vscode/extensions.json
: Removedunifiedjs.vscode-mdx
extension.Import Path Refactoring:
@lib
,@modules
, etc., to use@/lib
,@/modules
, etc., across multiple files for consistency and to match the new alias configurations. (src/app/[countryCode]/(checkout)/checkout/page.tsxL2-R8, src/app/[countryCode]/(checkout)/layout.tsxL2-R4, src/app/[countryCode]/(checkout)/not-found.tsxL2-R2, src/app/[countryCode]/(main)/account/@dashboard/addresses/page.tsxL3-R5, src/app/[countryCode]/(main)/account/@dashboard/orders/details/[id]/page.tsxL2-R6, src/app/[countryCode]/(main)/account/@dashboard/orders/page.tsxL3-R4, src/app/[countryCode]/(main)/account/@dashboard/page.tsxL3-R5, src/app/[countryCode]/(main)/account/@dashboard/profile/page.tsxL3-R9, src/app/[countryCode]/(main)/account/@login/page.tsxL2-R2, src/app/[countryCode]/(main)/account/layout.tsxL2-R3, src/app/[countryCode]/(main)/account/@dashboard/loading.tsxL1-R1, src/app/[countryCode]/(main)/cart/loading.tsxL1-R1, src/app/[countryCode]/(main)/cart/not-found.tsxL2-R2)Dependency Updates:
package.json
: Added several@radix-ui
components,class-variance-authority
,clsx
,embla-carousel-react
,lucide-react
,next-themes
,tailwind-merge
, andvaul
to dependencies.Documentation Updates:
README.md
: Corrected import paths in code examples to reflect new alias configurations. [1] [2]New Configuration File:
components.json
: Added a new configuration file for UI components with settings for style, Tailwind CSS, and aliases.