moved analyisstorer and messagelogger to it own folders

This commit is contained in:
soulgalore 2016-10-05 20:12:29 +02:00
parent 07fb47a4c4
commit 46a128af17
4 changed files with 4 additions and 2 deletions

View File

@ -1,10 +1,12 @@
# CHANGELOG - sitespeed.io
## Unreleased
-------------------------
### Changed
* The data structure (internally) for toplists is changed so they can be sent to Graphite and used in a budget. Messages for largest assets was renamed from assets.aggregateSizePerContentType to assets.largest. Also send the largest individual size of an image to Graphite by default.
* Plugin analysisStorer is now called analysisstorer and messageLogger is now messagelogger and live within their own plugin folder, following the pattern of all other plugins.
## 4.0.0-beta.4 2016-09-29
-------------------------
### Fixed

View File

@ -17,7 +17,7 @@ module.exports = {
if (rawConfig.debug) {
// Need to make sure logger is first, so message logs appear
// before messages are handled by other plugins
pluginNames = ['messageLogger'].concat(pluginNames);
pluginNames = ['messagelogger'].concat(pluginNames);
}
return pluginNames;
};