All Projects → postcss → postcss-browser-reporter

postcss / postcss-browser-reporter

Licence: MIT license
Plugin to display warning messages right in your browser

Programming Languages

javascript
184084 projects - #8 most used programming language

PostCSS Browser Reporter Build Status

PostCSS plugin to report warning messages right in your browser.

If a plugin before this one is throwing a warning, this plugin will append warning messages to html:before.

Postcss-browser-reporter – warnings from other postcss plugins in your browser

Usage

Put this plugin after all plugins if you want to cover all possible warnings:

postcss([
  require('other-plugin'),
  require('postcss-browser-reporter')
])

Options

selector ({String}, default: html::before)

You can override selector that will be used to display messages:

var messages = require('postcss-browser-reporter')
postcss([
  messages({
    selector: 'body:before'
  })
])

styles ({Object}, default: opinionated styles)

You can override default styles applied to the selector:

var messages = require('postcss-browser-reporter')
postcss([
  messages({
    styles: {
      color: 'gray',
      'text-align': 'center'
    }
  })
])

See PostCSS docs for examples for your environment.

License

The MIT License

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].