Blame view

node_modules/consola/src/reporters/json.js 194 Bytes
4cd4fd28   郭伟龙   feat: 初始化项目
1
2
3
4
5
6
7
8
9
export default class JSONReporter {
  constructor ({ stream } = {}) {
    this.stream = stream || process.stdout
  }

  log (logObj) {
    this.stream.write(JSON.stringify(logObj) + '\n')
  }
}