Created
June 10, 2015 01:14
-
-
Save lonelydatum/3de0c2cc0512da17e33d to your computer and use it in GitHub Desktop.
This file contains 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 reactify = require('reactify'); | |
var browserify = require('gulp-browserify'); | |
var browserSync = require('browser-sync').create(); | |
var sass = require('gulp-sass'); | |
function swallowError(error){ | |
console.log(error.toString()); | |
this.emit('end'); | |
} | |
gulp.task('scripts', function(){ | |
gulp.src('src/js/main.js') | |
.pipe(browserify({ | |
debug: true, | |
insertGlobals: false, | |
transform: [reactify] | |
})) | |
.on('error', swallowError) | |
.pipe(gulp.dest('dist/js/')) | |
.pipe(browserSync.stream()); | |
}) | |
gulp.task('browser-sync', function() { | |
browserSync.init({ | |
server: { | |
baseDir: "./dist" | |
} | |
}); | |
}); | |
gulp.task('styles', function(){ | |
gulp.src('src/styles/*.scss') | |
.pipe(sass()) | |
.on('error', swallowError) | |
.pipe(gulp.dest('dist/styles/')) | |
.pipe(browserSync.stream()); | |
}) | |
gulp.task('watcher', function(){ | |
gulp.watch('src/styles/*.scss', ['styles']) | |
gulp.watch(['./src/**/*.js', './src/**/*.jsx'], ['scripts']); | |
gulp.watch('./dist/index.html', browserSync.reload); | |
}) | |
gulp.task('default', [ 'scripts', 'watcher', 'browser-sync' ]); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment