-
Notifications
You must be signed in to change notification settings - Fork 27.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Turbopack: Log build progress in development like webpack does (#54806)
This adds logging to indicate build progress while using Turbopack in the same format that webpack uses. It uses the same store object and sets state to log messages like so: ``` - wait compiling /page (client and server)... - event compiled client and server successfully in 1366 ms ``` Given: - An app router page `/`, `compiling /page` is logged - An app router page `/bar`, `compiling /bar/page` is logged - An app router route `/api/bar`, `compiling /api/bar/route` is logged - A page router page `/foo`, `compiling /foo` is logged - A page router api route `/api/foo`, `compiling /api/foo` is logged Closes WEB-1476
- Loading branch information
1 parent
d172e7b
commit 58f1d23
Showing
1 changed file
with
50 additions
and
5 deletions.
There are no files selected for viewing
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