-
-
Notifications
You must be signed in to change notification settings - Fork 300
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
np for monorepos #549
Comments
Monorepos add a whole 'nother layer of complexity that |
I agree, this would be a completely different layer of complexity. Closing this for now. |
I would like to vote a +1 for monorepos. The only thing I'd need from I don't think it's a completely different layer of complexity.
|
Description
Right now, np only support single package repositories, it would be nice to support multi packages repositories.
Possible implementation
For myself, I wrote the following bash script, which basically runs
np
on each package in thepackages
directory, then it updates the version in the rootpackage.json
, and finally, it publishes the tag on GitHub.This scripts assumes that every package have the same version.
Folder structure:
release.sh
package.json
The root
package.json
looks something like this:Alternatives
People generally use lerna to manage multi-packages repositories.
The text was updated successfully, but these errors were encountered: