Skip to content

Instantly share code, notes, and snippets.

@ahmedam55
Created July 10, 2017 17:39
Show Gist options
  • Save ahmedam55/9d863a1f3a0fbab49ba15c8dd2a780b8 to your computer and use it in GitHub Desktop.
Save ahmedam55/9d863a1f3a0fbab49ba15c8dd2a780b8 to your computer and use it in GitHub Desktop.
var gulp = require('gulp');
var sass = require('gulp-sass');
var browserSync = require('browser-sync').create();
var htmlPath = 'src/**/*.html';
var jsPath = 'dist/**/*.js';
var sassPath = 'src/**/*.scss';
var distPath = 'dist/';
gulp.task('sass', function() {
return gulp.src(sassPath)
.pipe(sass())
.pipe(gulp.dest(distPath))
.pipe(browserSync.stream());
});
gulp.task('copy:html', function() {
return gulp.src('src/index.html')
.pipe(gulp.dest(distPath));
browserSync.reload();
})
gulp.task('browser-sync', function() {
browserSync.init({
server: {
baseDir: distPath
}
});
});
gulp.task('watch', function() {
gulp.watch(htmlPath, ['copy:html']);
gulp.watch(jsPath).on('change', browserSync.reload);
gulp.watch(sassPath, ['sass']);
})
gulp.task('default', ['copy:html', 'sass', 'browser-sync', 'watch']);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment