refactor(src/lib): 1b - remove barrel export - #133
Draft
sukhada wants to merge 1 commit into
Draft
Conversation
Barrel exports obscure what is actually used and make dead code detection harder. Only 4 production files imported from the barrel; all now use direct imports to specific modules. - Moved gzip/gunzip to new src/lib/gzip.ts (were defined inline in the barrel file) - Updated 4 barrel consumers to direct imports - Deleted src/lib/index.ts Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2 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
Phase 1B of the src/lib/ modernization. Removes the barrel export pattern from src/lib/.
Barrel exports obscure what is actually used and make dead code detection harder. Only 4 production files imported from the barrel — all now use direct imports.
Changes:
gzip/gunzipto newsrc/lib/gzip.ts(were defined inline in the barrel)src/server/index.ts:sleepfrom../lib/utilssrc/server/worker.ts:sleepfrom../lib/utilssrc/server/api/lib/campaign.ts:gzipfrom../lib/gzip,makeTreefrom../lib/interaction-step-helperssrc/workers/jobs/index.js:gunzipfrom../lib/gzip__test__/lib/zip-format.test.jsto import fromzip-formatdirectlysrc/lib/index.tsStacked on: #132
Test plan
Generated with Claude Code