Skip to content

Instantly share code, notes, and snippets.

@Akhigbe-E
Created July 9, 2020 12:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Akhigbe-E/162700c5dd5d63260a1001b5e49f1572 to your computer and use it in GitHub Desktop.
Save Akhigbe-E/162700c5dd5d63260a1001b5e49f1572 to your computer and use it in GitHub Desktop.
Gulp sass added
const gulp = require('gulp')
const sass = require('gulp-sass')
const transpileSassToCss = (cb) => {
return gulp.src(`src/sass/main.scss`)
.pipe(sass())
.pipe(gulp.dest(`src/css`))
}
exports.default = transpileSassToCss;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment