stats.report/json is being written to .embark/ not dist/
This commit is contained in:
parent
c713c11790
commit
e05918d84f
|
@ -149,7 +149,7 @@ class WebpackProcess extends ProcessWrapper {
|
|||
},
|
||||
function writeStatsReport(next) {
|
||||
if (detectErrors) {
|
||||
self._log('info', 'writing file '+ ('dist/stats.report').bold.dim);
|
||||
self._log('info', 'writing file '+ ('.embark/stats.report').bold.dim);
|
||||
}
|
||||
fs.writeFile(
|
||||
path.join(fs.dappPath('.embark'), 'stats.report'),
|
||||
|
@ -159,7 +159,7 @@ class WebpackProcess extends ProcessWrapper {
|
|||
},
|
||||
function writeStatsJSON(next) {
|
||||
if (detectErrors) {
|
||||
self._log('info','writing file '+ ('dist/stats.json').bold.dim);
|
||||
self._log('info','writing file '+ ('.embark/stats.json').bold.dim);
|
||||
}
|
||||
fs.writeFile(
|
||||
path.join(fs.dappPath('.embark'), 'stats.json'),
|
||||
|
|
Loading…
Reference in New Issue