Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix constant width for checkmark (#8702)
### Description The unicode codepoint (✔) we used for a checkmark is not monospace on some platforms (i.e. linux). <img width="25%" src="https://github.com/vercel/turbo/assets/15232461/03cba20a-1f4a-4818-846a-4cef56b8c6eb" /> This PR updates that to use the [characters matching Next.JS](https://github.com/vercel/next.js/blob/1a04d94aaec943d3cce93487fea3b8c8f8898f31/packages/next/src/build/output/log.ts) (and many other CLI tools before it). Prior to this PR, this resulted in the checkmark overflowing its boundary into the border. | BEFORE | AFTER | | - | - | | ![image](https://github.com/vercel/turbo/assets/15232461/92e18df7-8ba9-4a31-9d13-59d183861e25) | ![image](https://github.com/vercel/turbo/assets/15232461/223aab8b-0efd-49f7-85b8-9348e5a3b00a) | ### Testing Instructions ```sh cargo tr-build ./target/debug/turbo test --filter "./packages/*" --continue --force ```
- Loading branch information