0.3.8 • Published 6 years ago

csscomb-webpack-plugin v0.3.8

Weekly downloads
3
License
MIT
Repository
github
Last release
6 years ago

csscomb-webpack-plugin

A CSSComb plugin for webpack

Requirements

This module requires a minimum of Node v6.9.0 and it's compatible with both Webpack 3 and 4.

Getting Started

To begin, you'll need to install csscomb-webpack-plugin:

$ npm install csscomb-webpack-plugin --save-dev

Then add the plugin to your webpack config. For example:

// webpack.config.js
const CSSCombPlugin = require('csscomb-webpack-plugin');

module.exports = {
  // ...
  plugins: [
    new CSSCombPlugin(options),
  ],
  // ...
}

And run webpack via your preferred method.

Options

configFile

Type: String Default: ./.csscomb

Specify the config file location to be used by CSSComb.

Note: If no config was found, it will load CSSComb standard config

files

Type: String|Array[String] Default: '**/*.s?(a|c)ss'

Specify the glob pattern for finding files.

displayErrors

Type: Boolean Default: true

Show CSSComb error messages.

License

MIT

0.3.8

6 years ago

0.3.7

6 years ago

0.3.6

6 years ago

0.3.5

6 years ago

0.3.4

6 years ago

0.3.3

6 years ago

0.3.2

6 years ago

0.3.1

6 years ago

0.3.0

6 years ago

0.2.1

6 years ago

0.2.0

6 years ago

0.1.1

6 years ago

0.1.0

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago