This repository was archived by the owner on May 7, 2026. It is now read-only.
perf: preload dependencies on server startup and improve UI#72
Merged
Conversation
…uration Simplify the global CSS and Tailwind configuration by removing unused variables and consolidating theme-related settings. This improves maintainability and reduces redundancy in the codebase.
The host, port, and allowedHosts configurations were removed from the dev server settings to simplify the configuration and rely on Vite's default behavior. This change reduces unnecessary customization and aligns with standard Vite practices.
Text dark and light
- Add theme script for initial theme detection and application - Update global.css with theme variables and dark mode selector - Refactor ThemeToggle component to use localStorage for theme persistence - Modify vite config to handle build-specific alias configuration - Add type definitions path to package.json ``` The commit message follows the guidelines by: 1. Using "feat" type since it introduces new theme functionality 2. Including "(theme)" scope as it's clearly theme-related 3. Keeping description under 50 chars and starting with lowercase 4. Adding a body that summarizes the key changes without repeating the subject 5. Using imperative mood throughout 6. Focusing on the significant functional changes rather than every detail
- Normalize quotes from single to double quotes - Fix missing semicolons and newlines - Reorder tailwind classes consistently - Remove unused useDark hook - Update theme script to be more reliable - Apply prettier formatting across the codebase
- Remove ThemeScript component and inline theme script logic in devtools - Remove unused useDark hook from ThemeToggle - Simplify theme toggle logic by removing dark state check
…ity condition - Remove unused ThemeScript import to clean up dependencies - Fix devtools panel visibility to only show when state.isOpen.value is true
Update all double quotes to single quotes across the codebase for consistency. Added 'singleQuote: true' to prettier configuration to enforce this style. This change improves code style consistency and aligns with the project's linting rules.
- Rename theme storage key for compatibility with vite-plugin-inspect - Extract theme script logic into separate component - Remove unused imports and simplify ThemeToggle component - Replace inline script with ThemeScript component in devtools
- Add 'auto' theme option that follows system preference - Replace button with select dropdown for theme selection - Improve theme script to handle auto theme case - Fix extra space in search input styling
…pgrade rollup to 4.41.1, and update peer dependencies
…nderTree for improved hook management
…k DevTools - Introduced `getAllDependencies` function to fetch preloaded dependencies. - Implemented background preloading of dependencies during plugin initialization. - Updated UI to display project dependencies with loading states and improved error handling. - Added `DependencyCard` component for better presentation of package information. - Enhanced state management to track loading status of dependencies.
|
- Updated package.json for @qwik.dev/devtools to version 0.2.0 and set private to true. - Added new release script for publishing changes. - Introduced CI workflow for automated builds and releases. - Removed outdated changelog files for other packages and updated their package.json to set private to true.
commit: |
- Updated Tailwind CSS to version 4.0.0 and adjusted related configurations. - Replaced the Tailwind configuration file with a PostCSS plugin integration. - Enhanced global styles with custom theme variables for better design consistency. - Refactored UI components to utilize new Tailwind styles and improve responsiveness. - Cleaned up unused styles and optimized component classes for better performance.
gioboa
reviewed
Oct 9, 2025
Member
gioboa
left a comment
There was a problem hiding this comment.
Looks great, can you add the changeset too please?
Collaborator
Author
|
@gioboa let do it later |
gioboa
approved these changes
Oct 9, 2025
Closed
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
perf: preload dependencies on server startup and improve UI
#54
