mirror of
https://github.com/nuxt/nuxt.git
synced 2025-02-12 03:38:07 +00:00
9 lines
276 B
JavaScript
9 lines
276 B
JavaScript
export const forceExitTimeout = 5
|
|
|
|
export const startSpaces = 2
|
|
export const optionSpaces = 2
|
|
|
|
// 80% of terminal column width
|
|
// this is a fn because console width can have changed since startup
|
|
export const maxCharsPerLine = () => (process.stdout.columns || 100) * 80 / 100
|