docs(readme): add class-variance-authority and @yudiel/react-qr-scanner to Key Libraries#224
Open
andrerfneves wants to merge 1 commit into
Open
docs(readme): add class-variance-authority and @yudiel/react-qr-scanner to Key Libraries#224andrerfneves wants to merge 1 commit into
andrerfneves wants to merge 1 commit into
Conversation
…er to Key Libraries Two important production dependencies were missing from the documented Key Libraries section: - **class-variance-authority** — Powers the variant system used by all shadcn/ui components (button variants, badge variants, alert variants, etc.) - **@yudiel/react-qr-scanner** — Powers the QR code scanning feature Adding these entries helps developers understand the full dependency landscape when working with or customizing the application.
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
3 tasks
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.
Summary
Adds two missing production dependencies to the README Key Libraries section.
Why
The README's Key Libraries section documents the major libraries used by the project. Two important dependencies were missing:
class-variance-authority
Powers the variant system used by all shadcn/ui components. Component variants like
variant="destructive"on buttons and badges, andvariant="outline"on badges, all depend on CVA. Understanding this library is essential for developers who want to customize the UI components.@yudiel/react-qr-scanner
Powers the QR code scanning feature — one of the core features described in the README ("QR Code Scanning — Scan QR codes directly from your camera to decode Lightning payment data"). Despite being a feature-level dependency, it was not listed in the Key Libraries section.
Changes
README.md: Added two entries to the Key Libraries section:class-variance-authority— Component variant system for shadcn/ui components@yudiel/react-qr-scanner— QR code scanning with device cameraTest Plan