Metalsmith Sass Versions Save

Sass plugin for Metalsmith.

v1.0.0

9 years ago
  • Updated to node-sass v3.0 :tada:
  • Added support for source maps.
  • All options now get passed through to node-sass (no more manual updates for new options!)

v0.7.0

9 years ago

v0.6.1

9 years ago
  • Compilation errors are now reported correctly through Metalsmith CLI.

v0.6.0

9 years ago
  • 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

9 years ago
  • 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

9 years ago

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

9 years ago
  • Support for Metalsmith v1.0.

v0.3.0

9 years ago

v0.2.1

9 years ago
  • Fixed an issue that was causing filenames with underscores (e.g. my_file.scss) to incorrectly be treated as partials.

v0.2.0

9 years ago
  • 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.