Releases: sindresorhus/grunt-sass
v3.1.0
v3.0.0
This release requires Node.js 8 or later.
You now have to choose whether you want node-sass
or dart-sass
by installing one of them yourself and setting it in the options. See the updated docs: https://github.com/sindresorhus/grunt-sass#usage
Don't forget const sass = require('node-sass')
or const sass = require('dart-sass')
.
2.0.0
Bumped to node-sass 4.0.0 and libsass 3.4.0.
1.2.0-beta
Bumped [email protected]
for the latest and greatest LibSass
npm install grunt-sass@beta
1.1.0
Bumped to node-sass 3.4.0 and libsass 3.3.0.
1.0.0 - node-sass 3.0.0 and libsass 3.2.0
Lots of good stuff :)
0.18.1
0.18.0 - node-sass 2.0
- Improved error output.
- Outputs
node-sass
andlibsass
version when you run in verbose mode:grunt --verbose
.
See the node-sass
changelog for more.
node-sass 1.2.3
Upgrade to node-sass 1.2.3.
node-sass 1.0.0 & libsass 3.0.0!
$ npm update --save-dev grunt-sass
Updated to node-sass 1.0.0: https://github.com/sass/node-sass/releases/tag/v1.0.0
Which updates libsass to 3.0.0: https://github.com/sass/libsass/releases/tag/3.0
Do note that the sourceMap
option is broken in node-sass.
sourceMap: true
should work fine. (I added a temporary workaround in grunt-sass)
sourceMap: 'path'
however does not. (Which is why the tests are failing...)