v0.9.0
Features 🚀
default-query-params
(ecb6120) (#133)
Provide query params to all of your requests. Useful for skipping cookie banners, authentication, etc.
export default {
// ?foo=bar added to all requests
defaultQueryParams: {
foo: 'bar',
}
}
You can read more on the authentication page.
New reporters: csv
, csvExpanded
(61b8962) (#63)
When using the CI mode you can now generate CSV reports, in the following formats:
csv
- path, score, category scorescsvExpanded
- path, score, category scores, column output
For example
unlighthouse-ci --site <site> --reporter csv
The json
report will now output the category scores as well.
You can read more on the reporting page.