moved analyisstorer and messagelogger to it own folders
This commit is contained in:
parent
07fb47a4c4
commit
46a128af17
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in New Issue