UNPKG

213 BJavaScriptView Raw
1const fs = require('fs')
2const path = require('path')
3
4const paths = require('./paths')
5
6module.exports = stats => {
7 fs.writeFileSync(
8 path.join(paths.root, 'stats.json'),
9 JSON.stringify(stats.toJson())
10 )
11}