This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
npm init | |
npm install gulpjs/gulp#4.0 gulp-sass gulp-sourcemaps browser-sync gulp-autoprefixer gulp-load-plugins --save-dev |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var gulp = require('gulp'); | |
var $ = require('gulp-load-plugins')(); | |
var sourcemaps = require('gulp-sourcemaps'); | |
var browserSync = require("browser-sync").create(); | |
var reload = browserSync.reload; | |
var sassPaths = [ | |
]; | |
gulp.task('sass', function() { |
NewerOlder