Skip to content

Instantly share code, notes, and snippets.

View matthew-ia's full-sized avatar

Matthew Alicea matthew-ia

View GitHub Profile
@matthew-pm
matthew-pm / gulp-sass-5-gulpfile.js
Last active February 9, 2023 15:34
Update gulp-sass imports for 5.x
// from
const sass = require('gulp-sass');
sass.compiler = require('sass');
// to
const sass = require('gulp-sass')(require('sass'));