Skip to content

Releases: stevenschobert/metalsmith-sass

v1.0.0

26 May 03:53
Compare
Choose a tag to compare
  • 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!)

v0.7.0

21 Feb 14:40
Compare
Choose a tag to compare

v0.6.1

30 Jan 16:13
Compare
Choose a tag to compare
  • Compilation errors are now reported correctly through Metalsmith CLI.

v0.6.0

30 Jan 05:05
Compare
Choose a tag to compare
  • 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

v0.5.0

05 Nov 21:28
Compare
Choose a tag to compare
  • 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)!

v0.4.0

17 Oct 16:37
Compare
Choose a tag to compare

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.

v0.3.1

07 Oct 21:57
Compare
Choose a tag to compare
  • Support for Metalsmith v1.0.

v0.3.0

05 Jul 16:51
Compare
Choose a tag to compare

v0.2.1

23 Jun 15:53
Compare
Choose a tag to compare
  • Fixed an issue that was causing filenames with underscores (e.g. my_file.scss) to incorrectly be treated as partials.

v0.2.0

10 Jun 03:30
Compare
Choose a tag to compare
  • 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.