11/21/2019
- Enable support for Node.js version 12/13 by upgrading to node-sass v4.13.0 - thanks @nickcolley.
01/20/2018
- Updated to node-sass v4.11.
- Fixed performance issue with calling
toString()
on non-sass files. Thanks @crazy2be! #47 🎉
01/09/2017
- Updated to node-sass v4.2. Thanks @shouze! #40 🎉
07/20/2015
- Support for Metalsmith v2
- Nicer error messaging, thanks @callym! #26
06/10/2015
- README updates
06/10/2015
- Added support for
.sass
files! 🎉
06/08/2015
- Added support for using a function in the
outputDir
option. Useful for preserving folder structure instead of just aggregating everything into a single folder.
05/25/2015
- Updated to node-sass v3.0 🎉
- Added support for source maps.
- All options now get passed through to node-sass (no more manual updates for new options!)
02/21/2015
- Upgrades to node-sass v2.0.1
- Adds support for node v0.12
01/30/2015
- Compilation errors are now reported correctly through Metalsmith CLI.
01/29/2015
- Switched node-sass compilation to use buffers instead of file paths. This enables other plugins (like yaml front-matter) to work properly. See #14.
- Upgrade node-sass to v1.2
11/05/2014
- Any errors encountered when compiling sass files are now capture-able through Metalsmith's
.build(function(err, files) {})
method. Thank you @ubenzer for the contribution (#12)!
10/17/2014
This release updates libsass (the underlying sass library) to v3.0, which includes tons of major fixes and improvements.
Check out the Libsass v3.0 release notes for a detailed list of updates.
- Update to node-sass v1.0.
10/07/2014
- Support for Metalsmith v1.0.
07/05/2014
- Now uses libsass 2.0. See the node-sass changelog.
- Dotfiles are now ignored in builds.
06/23/2014
- Fixed an issue that was causing filenames with underscores (e.g.
my_file.scss
) to incorrectly be treated as partials.
06/09/2014
- Partials are now properly ignored (thanks @dpisklov!). Addresses #1 and #2.
- Added an
outputDir
option. Can be used in combination withMetalsmith.destination()
to control output paths for stylesheets.