next.js
58f1d238 - Turbopack: Log build progress in development like webpack does (#54806)

Commit
2 years ago
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
Author
Parents
Loading