-
Notifications
You must be signed in to change notification settings - Fork 164
Add monorepo support to project #682
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
Add monorepo support to project #682
Conversation
@danditomaso is attempting to deploy a commit to the Meshtastic Team on Vercel. A member of the Team first needs to authorize it. |
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.
Pull Request Overview
This PR restructures the repository into a monorepo by moving the existing web app under packages/web
, adding workspace configurations for Deno, updating package scripts, and adjusting the pre-commit hook.
- Migrated all web files into
packages/web
- Introduced package-level and root-level
deno.json
workspace configs - Updated
package.json
scripts and dependencies, and adjusted the pre-commit hook to target the new structure
Reviewed Changes
Copilot reviewed 6 out of 458 changed files in this pull request and generated 2 comments.
Show a summary per file
File | Description |
---|---|
packages/web/src/components/PageComponents/Connect/Serial.tsx | Removed an unused SerialPort type import |
packages/web/src/components/LanguageSwitcher.tsx | Adjusted dropdown width from w-64 to w-48 |
packages/web/package.json | Added generate:routes script, updated package script, moved/updated dependencies and removed lint-staged |
packages/web/deno.json | Created a package-level Deno config with import aliases and TS options |
deno.json | Configured root workspace to include packages/web and cleared root imports |
.githooks/_/pre-commit | Scoped lint & format hook to packages/web |
Comments suppressed due to low confidence (1)
deno.json:5
- [nitpick] The root
deno.json
now has an emptyimports
map after moving configs to package-level; if other packages rely on import remapping, ensure this change doesn't break their imports or consider consolidating common aliases at the root.
"imports": {},
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
Description
This pull request introduces several large scale changes to the repositry. As a result of the addition of several new applications to the web repo, we needed a way to orgnize simlar apps that will be sharing code and thus the monorepo. All files have been moved into /packages/web in a like for like migration so anything that worked previously will now live under /packages/web.
Changes Made
Checklist
CONTRIBUTING_I18N_DEVELOPER_GUIDE.md for more details)