-
Notifications
You must be signed in to change notification settings - Fork 27.2k
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
enable @vercel/og support for turbopack #53917
Changes from all commits
c97e724
e6cc704
c99acec
7fce545
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
[workspace] | ||
resolver = "2" | ||
|
||
members = [ | ||
"scripts/send-trace-to-jaeger", | ||
|
@@ -22,8 +23,9 @@ opt-level = 2 | |
[profile.dev.package."*"] | ||
debug-assertions = false | ||
|
||
[profile.release] | ||
lto = true | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is way too annoying for local dev, I'm mostly running release builds locally to make turbo-tasks faster I've moved it to the CI task that actually builds our release binaries |
||
# Set the settings for build scripts and proc-macros. | ||
[profile.dev.build-override] | ||
opt-level = 3 | ||
|
||
[workspace.dependencies] | ||
# Workspace crates | ||
|
@@ -44,11 +46,11 @@ swc_core = { version = "0.79.40" } | |
testing = { version = "0.33.21" } | ||
|
||
# Turbo crates | ||
turbopack-binding = { git = "https://github.com/vercel/turbo.git", tag = "turbopack-230809.2" } | ||
turbopack-binding = { git = "https://github.com/vercel/turbo.git", tag = "turbopack-230811.2" } | ||
# [TODO]: need to refactor embed_directory! macro usages, as well as resolving turbo_tasks::function, macros.. | ||
turbo-tasks = { git = "https://github.com/vercel/turbo.git", tag = "turbopack-230809.2" } | ||
turbo-tasks = { git = "https://github.com/vercel/turbo.git", tag = "turbopack-230811.2" } | ||
# [TODO]: need to refactor embed_directory! macro usage in next-core | ||
turbo-tasks-fs = { git = "https://github.com/vercel/turbo.git", tag = "turbopack-230809.2" } | ||
turbo-tasks-fs = { git = "https://github.com/vercel/turbo.git", tag = "turbopack-230811.2" } | ||
|
||
# General Deps | ||
|
||
|
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.
Didn't we disable this for some reason? @kwonoj
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.
I moved it from the
Cargo.toml
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.
I didn't touch lto related options, probably it's kdy's changes?