https://github.com/mistereo/csso-brunch
CSSO support for brunch
https://github.com/mistereo/csso-brunch
Last synced: about 2 months ago
JSON representation
CSSO support for brunch
- Host: GitHub
- URL: https://github.com/mistereo/csso-brunch
- Owner: Mistereo
- License: mit
- Created: 2014-11-29T09:25:26.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-11-29T09:42:33.000Z (over 10 years ago)
- Last Synced: 2025-03-10T16:49:26.633Z (3 months ago)
- Language: JavaScript
- Size: 133 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## csso-brunch
Adds [CSSO](https://github.com/css/csso) support to [brunch](http://brunch.io).
CSSO (CSS Optimizer) is a CSS minimizer unlike others. In addition to usual minification techniques it can perform structural optimization of CSS files, resulting in smaller file size compared to other minifiers.
## Usage
Install the plugin via npm:
```console
npm install --save csso-brunch
```To specify CSSO options, use `config.plugins.csso` object, for example:
```javascript
exports.config = {
...
plugins: {
csso: {
restructure: false
}
}
}
```## License
The MIT License (MIT)