grunt-sass-chromatic
v2.0.0
Published
Compile Sass to CSS using node-sass, enhanced by chromatic-sass. We keep it up-to-date with the original grunt-sass repo by Sindre Sorhus https://github.com/sindresorhus/grunt-sass. Respective versions should match.
Downloads
2
Maintainers
Readme
This fork adds chromatic to grunt-sass. For more info, please see https://github.com/bugsnag/chromatic-sass or just look at
tasks/sass.js
grunt-sass
Compile Sass to CSS using node-sass
The issue tracker is disabled because of continuous abuse. Use Stack Overflow for support questions. Issues with the output should be reported on the libsass issue tracker. Install issues should be reported on the node-sass issue tracker. Learn how semver works before opening a PR updating node-sass.
This task uses libsass, which is a Sass compiler in C++. It's a lot faster than the original Ruby compiler and fully compatible.
Install
$ npm install --save-dev grunt-sass
Usage
require('load-grunt-tasks')(grunt); // npm install --save-dev load-grunt-tasks
grunt.initConfig({
sass: {
options: {
sourceMap: true
},
dist: {
files: {
'main.css': 'main.scss'
}
}
}
});
grunt.registerTask('default', ['sass']);
Files starting with _
are ignored to match the expected Sass partial behaviour.
Options
See the node-sass
options, except for file
, outFile
, success
, error
.
The default value for the precision
option is 10
, so you don't have to change it when using Bootstrap.
License
MIT © Sindre Sorhus