Skip to content

Latest commit

 

History

History
128 lines (70 loc) · 5.24 KB

CHANGELOG.md

File metadata and controls

128 lines (70 loc) · 5.24 KB

Changelog

01/06/2022

BREAKING CHANGE: node-sass has been changed from a direct dependency to a peer dependency. If you are upgrading from v1.x.x, you may need to install it directly in your project using npm install --save node-sass.

  • Changed node-sass to a peer dependency. This gives you direct control over which version of node-sass you want to use in your project going forward. No more waiting for metalsmith-sass releases!
  • Upgraded dependencies and resolved vulnerabilities.
  • Remove test files from npm distribution.
  • Enable support for all versions of Node.js supported by node-sass. Going forward, whichever version of node-sass you install will determine your Node.js support. See node-sass' version support policy for details.

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.