defaults.js 591 B

1234567891011121314151617181920
  1. module.exports = {
  2. /*
  3. * Number of lines after log has been created, to stop updating Log
  4. * Default value if console does not support rows counting
  5. */
  6. maximumLinesUp: 30,
  7. /*
  8. * ReWrites the line if maximumLinesUp reached, and reset _line
  9. */
  10. canReWrite: true,
  11. /*
  12. * Allows automatically binding to process.stdin as a input source.
  13. * Set to false, because it prevents the process from exiting,
  14. * and that's not cool. Let user decide if it's good to use or not.
  15. * Calls lineCountStream.addLineListener(process.stdin) when true
  16. */
  17. stdinAutoBind: false,
  18. }