node-sass 2.0.1, libsass 3.1, ruby (and experimental compass) support
Pre-release
Pre-release
Install Instructions
To manually install this dev build, follow these instructions.
Release Notes
New
- Ruby compiler support (see new
"sass.compiler": "ruby"
setting below) from @nicolo-ribaudo - Experimental Compass compile-only support (no live preview) from @nicolo-ribaudo and @jasonsanjose
- Update to libsass 3.1 (previously 3.0)
Bug Fixes
- Windows source map path issues when files span multiple drives
- Live preview issues when updating partials #91
- Lint errors partials will compile the correct input file (based on an existing source map) #87
Changes to .brackets.json settings
{
{
"sass.compiler": "libsass|ruby", // default: "libsass"
"sass.compass": false // default: false, experimental compile-only support (no live preview). requires config.rb at project root
},
"path": {
"path/to/my.scss": {
"sass.options": {
"sourceMap": true | "relative/path/from/input.css.map" // default: true
}
}
}
}
Notes
See pull request #100.