Skip to content

Latest commit

 

History

History
117 lines (63 loc) · 4.31 KB

CHANGELOG.md

File metadata and controls

117 lines (63 loc) · 4.31 KB

Changelog

11/21/2019

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

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

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.

10/07/2014

  • Support for Metalsmith v1.0.

07/05/2014

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 with Metalsmith.destination() to control output paths for stylesheets.