Identify refactoring opportunities in codebase#17
Merged
Conversation
hashrock
commented
Jan 5, 2026
Owner
- Create src/utils.js with shared utilities (flattenChildren, cleanupTempFile, getFilesRecursively, isJSXFile, isHTMLFile, toCamelCase, debounce)
- Create src/constants.js with centralized configuration (PORTS, DIRS, TIMING, SELF_CLOSING_TAGS, MIME_TYPES, HTTP_STATUS, INLINE_JSX_RUNTIME)
- Split cli.js (262 lines) into modular commands:
- commands/build.js - build command logic
- commands/dev.js - dev server command logic
- cli.js (78 lines) - entry point only
- Update all files to use shared utilities and constants
- Add JSDoc type annotations to exported functions
- Remove duplicate code across barrels.js, builder.js, jsx-runtime.js
- Net reduction: 262 lines of code
- Create src/utils.js with shared utilities (flattenChildren, cleanupTempFile, getFilesRecursively, isJSXFile, isHTMLFile, toCamelCase, debounce) - Create src/constants.js with centralized configuration (PORTS, DIRS, TIMING, SELF_CLOSING_TAGS, MIME_TYPES, HTTP_STATUS, INLINE_JSX_RUNTIME) - Split cli.js (262 lines) into modular commands: - commands/build.js - build command logic - commands/dev.js - dev server command logic - cli.js (78 lines) - entry point only - Update all files to use shared utilities and constants - Add JSDoc type annotations to exported functions - Remove duplicate code across barrels.js, builder.js, jsx-runtime.js - Net reduction: 262 lines of code
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.