-
Notifications
You must be signed in to change notification settings - Fork 17
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
Migrate to monorepo #140
Migrate to monorepo #140
Conversation
"private": true, | ||
"workspaces": [ | ||
"packages/base" | ||
] | ||
} |
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.
Should lerna
be here as a dev dependency? 🤔
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.
Hm, I think lerna
recommends that you install it globally. I can either add it as a dev dep or add a note in the readme?
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.
Apparently not. From their README:
Let's start by installing Lerna as a dev dependency of your project with npm.
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.
😅 56c43bc
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.
LGTM!
In service of #104, this PR migrates this repo to a monorepo structure. The goal with this PR is to support splitting the existing config package into multiple packages. CI scripts have been altered to support the existence of multiple packages, but are otherwise unchanged.
After this is merged, numerous steps remain, including splitting the various configs into their own packages, migrating to GitHub Actions, and setting up automatic releases.