Remove unused dependencies from project#56
Merged
MarcosBrendonDePaula merged 1 commit intomainfrom Feb 12, 2026
Merged
Conversation
Removed from package.json: - chokidar (no imports - Bun's built-in file watcher is used) - ws (no imports - Bun's built-in ServerWebSocket is used) - @types/ws (unnecessary since ws is not used) - http-proxy-middleware (no imports anywhere) - @types/http-proxy-middleware (unnecessary since http-proxy-middleware is not used) - lucide-react (no imports in any source file) - concurrently (not used - FluxStack CLI handles parallel execution) Also cleaned up hardcoded dependency list in core/templates/create-project.ts (removed chokidar, ws, @types/ws from the alternative project generator template). https://claude.ai/code/session_01EjGMhtTRj5E97Q5Ga3LSV1
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
This PR removes several unused dependencies from both the main project and the project template generator. These packages were not being utilized in the codebase and have been cleaned up to reduce bundle size and dependency maintenance overhead.
Key Changes
Removed from devDependencies:
concurrently- no longer needed for concurrent task executionRemoved from dependencies:
@types/http-proxy-middleware- type definitions for unused proxy middleware@types/ws- WebSocket type definitions (removed from both main and template)chokidar- file system watcher (removed from both main and template)http-proxy-middleware- HTTP proxy functionalitylucide-react- icon libraryws- WebSocket library (removed from both main and template)Updated project template generator (
core/templates/create-project.ts) to reflect the same dependency removalsNotes
https://claude.ai/code/session_01EjGMhtTRj5E97Q5Ga3LSV1