sass-brunch
Adds Sass support to
brunch.
Usage
Install the plugin via npm with npm install --save sass-brunch
.
Or, do manual install:
- Add
"sass-brunch": "x.y.z"
to package.json
of your brunch app.
Pick a plugin version that corresponds to your minor (y) brunch version. - If you want to use git version of plugin, add
"sass-brunch": "git+ssh://git@github.com:brunch/sass-brunch.git"
.
Options
The default compilation method is libsass, with an automatic revert to the sass
ruby gem for .sass
files or if compass
is @import
ed. It is possible to
set a particular mode regardless of automatic detection. If using a
libsass-compatible compass replacement such as
compass-mixins, it is necessary to
set native
mode.
config =
plugins:
sass:
mode: 'ruby' # set to 'native' to force libsass
Set additional include paths:
config =
plugins:
sass:
options:
includePaths: ['bower_components/foundation/scss']
Print line number references as comments or sass's FireSass fake media query:
config =
plugins:
sass:
debug: 'comments' # or set to 'debug' for the FireSass-style output
Allow the ruby compiler to write its normal cache files in .sass-cache
(disabled by default).
This can vastly improve compilation time.
config =
plugins:
sass:
allowCache: true
To include the source files' name/path in either debug mode, create a parent file that @include
your actual sass/scss source. Make sure the source files are renamed to start with an underscore (_file.scss
), or otherwise exclude them from the build so they don't get double-included.
To pass any other options to sass:
config =
plugins:
sass:
options: ['--quiet']
Use sass/compass installed in custom location:
config =
plugins:
sass:
gem_home: './gems'
This could be useful for the environment which doesn't allow to install gems globally, such as CI server.
License
The MIT License (MIT)
Copyright (c) 2012-2013 Paul Miller (http://paulmillr.com)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.