(analysis)
| 173 | const writeTo = opts.writeTo || (opts.stdout ? console.log : console.error); |
| 174 | |
| 175 | const onAnalysis = (analysis) => { |
| 176 | if (typeof opts.onAnalysis === 'function') opts.onAnalysis(analysis); |
| 177 | if (!opts.skipFormatted) writeTo(reporter(analysis, opts)); |
| 178 | }; |
| 179 | |
| 180 | return { |
| 181 | name: 'rollup-plugin-analyzer', |