Skip to content

Instantly share code, notes, and snippets.

@naufaldi
Last active January 23, 2018 17:44
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 naufaldi/4d081102814ef5386106a08dd366d25e to your computer and use it in GitHub Desktop.
Save naufaldi/4d081102814ef5386106a08dd366d25e to your computer and use it in GitHub Desktop.
gulp task
gulp.task("sass", function () {
return gulp.src("./resource/assets/sass/**/*.scss")
.pipe(sass())
.pipe(autoprefixer())
.pipe(gulp.dest("./public/assets/css"))
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment