-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
removes turbopack specific cargo commands #8924
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
9 Skipped Deployments
|
build = "build -p turbo" | ||
run = "run -p turbo" | ||
test = "groups test turborepo" | ||
check = "groups check turborepo" |
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.
this isn't really necessary since the turborepo crates are the only ones left, so cargo test
and cargo check
will do the right thing
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.
oh, so are you saying we can just close this whole PR without merging it?
test = "groups test turborepo" | ||
check = "groups check turborepo" |
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.
test = "groups test turborepo" | |
check = "groups check turborepo" |
with turbopack being removed in #8906, we can now simplify the root cargo commands (and remove the old turbopack ones)