-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
Misc. changes to support App Router build #5448
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alexkirsz
force-pushed
the
alexkirsz/web-866-app-router-build-poc
branch
from
July 3, 2023 13:45
3f5271a
to
c5f7a68
Compare
The latest updates on your projects. Learn more about Vercel for Git ↗︎
10 Ignored Deployments
|
This was referenced Jul 3, 2023
Current dependencies on/for this PR:
This comment was auto-generated by Graphite. |
✅ This change can build |
|
alexkirsz
force-pushed
the
alexkirsz/web-866-node-entry-chunk-name
branch
from
July 4, 2023 09:45
1dc1c82
to
c410319
Compare
alexkirsz
force-pushed
the
alexkirsz/web-866-app-router-build-poc
branch
from
July 4, 2023 09:45
c5f7a68
to
d5d2514
Compare
alexkirsz
force-pushed
the
alexkirsz/web-866-node-entry-chunk-name
branch
from
July 4, 2023 12:09
c410319
to
5050577
Compare
alexkirsz
force-pushed
the
alexkirsz/web-866-app-router-build-poc
branch
from
July 4, 2023 12:09
d5d2514
to
7e1fa83
Compare
alexkirsz
force-pushed
the
alexkirsz/web-866-app-router-build-poc
branch
from
July 5, 2023 14:56
7e1fa83
to
ff6bc99
Compare
alexkirsz
force-pushed
the
alexkirsz/web-866-node-entry-chunk-name
branch
from
July 5, 2023 15:19
5050577
to
6a09e10
Compare
alexkirsz
force-pushed
the
alexkirsz/web-866-app-router-build-poc
branch
from
July 10, 2023 20:25
ff6bc99
to
76ea246
Compare
alexkirsz
force-pushed
the
alexkirsz/web-866-app-router-build-poc
branch
from
July 10, 2023 21:13
d2da80f
to
65a703f
Compare
Linux Benchmark for cd409daClick to view benchmark
|
MacOS Benchmark for cd409da
Click to view full benchmark
|
alexkirsz
force-pushed
the
alexkirsz/web-866-app-router-build-poc
branch
from
July 11, 2023 12:20
637bf50
to
ed97e7a
Compare
alexkirsz
force-pushed
the
alexkirsz/web-866-app-router-build-poc
branch
from
July 11, 2023 12:30
ed97e7a
to
a03105d
Compare
Linux Benchmark for 3ce691e
Click to view full benchmark
|
MacOS Benchmark for 3ce691e
Click to view full benchmark
|
Linux Benchmark for b3a678fClick to view benchmark
|
Linux Benchmark for ddebd2eClick to view benchmark
|
MacOS Benchmark for ddebd2e
Click to view full benchmark
|
Linux Benchmark for 5a92d73Click to view benchmark
|
Linux Benchmark for 0b89ab9Click to view benchmark
|
Linux Benchmark for a972912Click to view benchmark
|
sokra
reviewed
Jul 12, 2023
crates/turbopack-ecmascript-plugins/src/transform/directives/server_to_client_proxy.rs
Outdated
Show resolved
Hide resolved
sokra
approved these changes
Jul 12, 2023
sokra
pushed a commit
to vercel/next.js
that referenced
this pull request
Jul 12, 2023
This PR adds proof-of-concept support for the App Router to `next build --experimental-turbo`. It introduces a new way to generate Next.js manifests in Turbopack. Currently, in dev, we pass proxy objects in lieu of manifests, and rely on the entries to know which chunks they need loaded on the client. However, this can't work for builds because it requires control over Next.js rendering, which is not compatible with a Next->Turbo approach. We would need to modify Next.js to support these "lazy" entries. So for now, we add well-known assets (`NextDynamicAsset`, `NextServerComponentAsset`, `NextClientReferenceAsset`, etc.) to the graph, which will get picked up when walking it during asset processing. This lets us collect all possible entries before chunking. This two-step process (collecting all entries, then chunking them) is also a good first step towards production chunking. ## Turbopack updates * vercel/turborepo#5494 <!-- Tobias Koppers - add reporting of console messages --> * vercel/turborepo#5448 <!-- Alex Kirszenberg - Misc. changes to support App Router build -->
ForsakenHarmony
pushed a commit
to vercel/next.js
that referenced
this pull request
Jul 25, 2024
### Description <!-- ✍️ Write a short summary of your work. If necessary, include relevant screenshots. --> ### Testing Instructions <!-- Give a quick description of steps to test your changes. -->
ForsakenHarmony
pushed a commit
to vercel/next.js
that referenced
this pull request
Jul 29, 2024
### Description <!-- ✍️ Write a short summary of your work. If necessary, include relevant screenshots. --> ### Testing Instructions <!-- Give a quick description of steps to test your changes. -->
ForsakenHarmony
pushed a commit
to vercel/next.js
that referenced
this pull request
Aug 1, 2024
### Description <!-- ✍️ Write a short summary of your work. If necessary, include relevant screenshots. --> ### Testing Instructions <!-- Give a quick description of steps to test your changes. -->
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
Testing Instructions