-
-
Notifications
You must be signed in to change notification settings - Fork 32.4k
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
[core] Add a script to build all packages #40631
Conversation
Netlify deploy previewhttps://deploy-preview-40631--material-ui.netlify.app/ Bundle size report |
Which one ( |
It would be safer to build all projects (so to change the previous behavior). This way we'll ensure that all projects are in a good state all the time. |
@brijeshb42, would you mind taking a look at the failing zero-runtime-next-app build? |
@michaldudak Yeah. I also just encountered it and am looking into the reason. |
9ab1ea5
to
0640c89
Compare
0640c89
to
2e50d8f
Compare
The current
build
script builds only the public packages (@mui/*).This PR adds a new one,
build:all
to build all the workspace packages.Alternatively, I'm also considering using
build
to build all packages and introducingbuild:public
for public ones (instead of introducingbuild:all
). This way, runningbuild
as usual will verify if the whole repo is in a buildable state.