Releases: stevenschobert/metalsmith-sass
Releases · stevenschobert/metalsmith-sass
v2.0.0
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 ofnode-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
- Enable support for Node.js version 12/13 by upgrading to node-sass v4.13.0 - thanks @nickcolley.
v1.6.0
- Updated to node-sass v4.11.
- Fixed performance issue with calling
toString()
on non-sass files. Thanks @crazy2be! #47 🎉
v1.5.1
v1.5.0
- Updated to node-sass v4.7. Thanks @reyawn! #43 🎉
v1.4.0
- Updated to node-sass v4.2. Thanks @shouze! #40 🎉
v1.3.0
v1.2.1
- README updates
v1.2.0
- Added support for
.sass
files! 🎉
v1.1.0
- Added support for using a function in the
outputDir
option. Useful for preserving folder structure instead of just aggregating everything into a single folder.