12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- module.exports.format = function (data, options) {
- var output = JSON.stringify(data)
- if(options.program) {
- // If reporting output is defined, ignore console log here.
- if (options.program.reportOutput === undefined) {
- console.log(output)
- } else {
- return data
- }
- } else {
- console.log(output)
- }
- return data
- }
- const fs = require('fs-extra')
- const path = require('path')
- module.exports.finalReport = async function(reports, program) {
- if (program.reportOutput === undefined) {
- return
- }
- if (program.joinReports) {
- var out = {}
- for(var report of reports) {
- console.log('saving report', report.name)
- out[report.name] = report.contents
- }
- if (program.reportOutput == '-') {
- console.log(JSON.stringify(out, null, 2))
- } else {
- // fs.ensureDirSync(path.dirname(program.reportOutput))
- //fs.copySync(sourceFile, outDir)
- var outPath = program.reportOutput + '.json'
- console.log('writing joined to', outPath)
- fs.writeFileSync(outPath, JSON.stringify(out), 'utf8')
- }
- } else {
- // Ensure the output directory exists.
- fs.ensureDirSync(program.reportOutput)
- // Write each report to the disk
- for(var report of reports) {
- var outPath = path.join(program.reportOutput, report.name + '.json')
- console.log('saving', outPath)
- fs.writeFileSync(outPath, JSON.stringify(report.contents), 'utf8')
- }
- }
- }
|