Metalsmith Sass Versions Save

Sass plugin for Metalsmith.

v2.0.0

2 years ago

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.

v1.7.0

4 years ago

v1.6.0

5 years ago
  • Updated to node-sass v4.11.
  • Fixed performance issue with calling toString() on non-sass files. Thanks @crazy2be! #47 :tada:

v1.5.1

6 years ago
  • Fixes a bug with imports when using absolute paths in Metalsmith's source option. #45 (Thanks @RetrocadeNet) 🎉

v1.5.0

6 years ago

v1.4.0

7 years ago

v1.3.0

8 years ago
  • Support for Metalsmith v2
  • Nicer error messaging, thanks @callym! #26

v1.2.1

8 years ago
  • README updates

v1.2.0

8 years ago
  • Added support for .sass files! :tada:

v1.1.0

8 years ago
  • Added support for using a function in the outputDir option. Useful for preserving folder structure instead of just aggregating everything into a single folder.