First and foremost a huge shout out to @mxmason for making this long awaited release possible <3
Breaking changes
- Require Node >= 12
- Require Gulp 4
- Drop dependency on the deprecate node-sass
- Remove hardcoded default Sass compiler
Upgrading to v5
It is now required to explicitly install a Sass compiler.
npm install gulp-sass sass
or to continue using node-sass
npm install gulp-sass node-sass
Gulp tasks will also need to be update to use the installed Sass compiler
const sass = require('gulp-sass')(require('sass'));
Check out the upgrade guide for more details.