This package has been deprecated

Author message:

Deprecated

clean-css-brunch

3.0.0 • Public • Published

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: {
      keepSpecialComments: 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)

/clean-css-brunch/

    Package Sidebar

    Install

    npm i clean-css-brunch

    Weekly Downloads

    2,470

    Version

    3.0.0

    License

    MIT

    Unpacked Size

    4.83 kB

    Total Files

    5

    Last publish

    Collaborators

    • es128
    • paulmillr