Skip to content
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

[Feature] Progress bar for static build #15297

Merged
merged 14 commits into from
Aug 4, 2020
Prev Previous commit
Next Next commit
Update log helpers to reflect correct console method
  • Loading branch information
timneutkens committed Aug 3, 2020
commit c7707f0497024195a2f789fc51dbd46ea9464c55
4 changes: 2 additions & 2 deletions packages/next/build/output/log.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ export function wait(...message: string[]) {
}

export function error(...message: string[]) {
console.log(prefixes.error, ...message)
console.error(prefixes.error, ...message)
}

export function warn(...message: string[]) {
console.log(prefixes.warn, ...message)
console.warn(prefixes.warn, ...message)
}

export function ready(...message: string[]) {
Expand Down