brunch / clean-css-brunch

A CSS minifier for brunch stylesheets

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

clean-css-brunch

Adds clean-css support to brunch.

The plugin will minify your CSS files.

Usage

Install the plugin via npm with npm install -S clean-css-brunch.

Options

See all possible options in the CleanCSS API.

To specify clean-css options, use config.plugins.cleancss object, for example:

module.exports = {
  plugins: {
    cleancss: {
      specialComments: 0,
      removeEmpty: true
    }
  }
};

Joined files can be ignored and be passed-through, using 'ignored' option:

module.exports = {
  plugins: {
    cleancss: {
      ignored: /non_minimize\.css/
    }
  }
};

License

The MIT License (MIT)

About

A CSS minifier for brunch stylesheets

License:MIT License


Languages

Language:JavaScript 100.0%