parker-loader

Output a stylesheet analysis report using parker and webpack.

Usage no npm install needed!

<script type="module">
  import parkerLoader from 'https://cdn.skypack.dev/parker-loader';
</script>

README

parker-loader

build status npm version npm downloads

Output a stylesheet analysis report using parker and webpack.

Installation

$ npm install parker-loader --save-dev

Usage

var css = require('raw!parker!./styles.css');

Or within the webpack config:

module: {
  loaders: [{
    test: /styles\.css$/,
    loader: 'raw!parker?format=md&filename=stylesheet-analysis.md'
  }]
}

Options

format

Specify the report format (defaults to markdown). See the parker usage docs for other format options.

loaders: [
  {
    ...
    loader: 'raw!parker?format=csv&filename=stylesheet-analysis.csv'
  }
]

filename

Specify the report filename (defaults to [name]-analysis.md).

loaders: [
  {
    ...
    loader: 'raw!parker?filename=../parker-reports/[name].md'
  }
]

Tests

$ npm test

License

MIT