-
Notifications
You must be signed in to change notification settings - Fork 3
fix(backend): resolve lint warnings and stabilize Turbo env cache for DB_FILE_NAME #39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
c29fb7d
chore(backend): update package dependencies and configurations
Mohamed-Elshesheny 8fe5770
chore(workflows): remove version specification for pnpm setup in CI c…
Mohamed-Elshesheny da43079
feat(eslint-config): add Vite configuration and enhance global defini…
Mohamed-Elshesheny 3a7b5d8
refactor(eslint-config): update Vite ESLint configuration to use defi…
Mohamed-Elshesheny File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🏁 Script executed:
Repository: TeamCoderz/WordyMe
Length of output: 451
🏁 Script executed:
Repository: TeamCoderz/WordyMe
Length of output: 2936
🏁 Script executed:
Repository: TeamCoderz/WordyMe
Length of output: 2194
🏁 Script executed:
Repository: TeamCoderz/WordyMe
Length of output: 1221
Multiple globals configuration issues need attention.
The
globals.nodein base.js is properly set, but several downstream configs either override or omit it:vite.jsis missing from package.json exports —apps/webimports@repo/eslint-config/vitebut the export is not declared. This will cause module resolution failures.vite.jsloses Node globals entirely — It setsglobals: globals.browseronly and does not spreadbaseConfig, so Node globals are unavailable. However,apps/web/vite.config.tsusesprocess.cwd()(line 10), which requires Node globals for linting.react-internal.jsandnext.jsoverride Node globals — Both configs spreadbaseConfigbut then replacelanguageOptions.globalswith browser/serviceworker globals only. This is acceptable if these configs are used exclusively for frontend code that doesn't reference Node APIs.Action items:
"./vite": "./vite.js"to package.json exportsvite.jsto spreadbaseConfigor explicitly include...globals.nodealongsideglobals.browserreact-internal.jsandnext.jsare not applied to any files needing Node globals (e.g., build config files)🤖 Prompt for AI Agents