Grunt task that analyze your css with analyze-css and compare the results to a user-defined benchmark.
This plugin requires Grunt ^0.4.5
npm i grunt-analyze-css --save-dev
Run this task with the grunt analyzecss
command.
analyze-css
is a multi-task so it is possible
to define global files and options, and then use specific values for specific targets.
grunt.initConfig({
analyzecss: {
files: ['stylesheet.css']
prod: {
// optional target specific options
},
options: {
outputMetrics: 'error',
analyzecss: {
// analyzecss specific options
}
thresholds: {
// custom thresholds values
}
}
}
});
These are the possible config values. The format is optionName: 'defaultValue'
.
Defines the encoding when reading css files.
Possible values:
All supported values for
fs.readFile
can be used
The analyzecss options. This object is directly passed on to analyzecss api.
Possible values:
See analyze-css readme file.
The score at which warning begins. Any metric that is below this mark will issue a warning.
Possible values:
0...1
The score at which errors are thrown. Any metric that is below this mark will issue an error.
Possible values:
0...1
The length for default string padding in the results
Possible values:
Integer
This options controls if and how metrics are shown to the screen. By default only the global score of each css document is shown. If set to true, ever metric score will show up. You can limit the output to set a cap on output by using 'warn' or 'error'.
Possible values:
true, false, 'warn', 'error'
This options will output duplicated selectors in stdout.
Possible values:
true, false
Prevents the grunt task to be halted if this task failed.
Possible values:
true, false
This object should contains all the maximum values allowed for each metric. The results of your css files will be compared to those maximum values and issue warning and errors if they surpass warn/error levels.
If you want to ignore certain metric, be sure to set them to null
Possible values:
See analyze-css readme file or the defaults in the source code.
Enables writing the report to a file. In the case of a string
, it will be
used as a file path where the report is written in the format given in options.reportFormat
.
Possible values:
false | string
Determines the format of the options.reportFile
.
JSON will be pretty printed, with two character indentation.
Possible values:
'json' | 'text'
Made with love in Montréal by https://deuxhuithuit.com
Licensed under the MIT License: http://deuxhuithuit.mit-license.org