Last active
August 29, 2015 14:16
-
-
Save AndersNS/bc075cb76bbed77cce49 to your computer and use it in GitHub Desktop.
Gulpfile with babelify, watchify and browser-sync reloads.
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 browserify = require('browserify'); | |
var source = require("vinyl-source-stream"); | |
var babelify = require("babelify"); | |
var watchify = require('watchify'); | |
var gutil = require('gulp-util'); | |
var browserSync = require('browser-sync'); | |
var historyApiFallback = require('connect-history-api-fallback') | |
var notify = require("gulp-notify"); | |
var opts = { | |
appJs: './app/js/app.js', | |
appFolder: './app', | |
jsOutfile: 'bundle.js', | |
jsOutFolder: './app/js' | |
}; | |
// Save a reference to the `reload` method | |
var reload = browserSync.reload; | |
gulp.task('browserify', function(){ | |
var bundler = watchify(browserify(opts.appJs, watchify.args)); | |
bundler.transform(babelify); | |
bundler.on('update', rebundle); | |
function rebundle() { | |
return bundler.bundle() | |
// log errors if they happen | |
.on('error', swallowError) | |
.pipe(source(opts.jsOutfile)) | |
.pipe(gulp.dest(opts.jsOutFolder)) | |
.pipe(reload({stream:true})) | |
.pipe(notify("Browser reloaded after watchify update!"));; | |
} | |
return rebundle(); | |
}); | |
function swallowError(error) { | |
//If you want details of the error in the console | |
console.log(error.toString()); | |
this.emit('end'); | |
} | |
gulp.task('browser-sync', function() { | |
browserSync({ | |
server: { | |
baseDir: opts.appFolder, | |
middleware: [historyApiFallback] | |
} | |
}); | |
}); | |
gulp.task('default', ['browser-sync', 'browserify'], function() { | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment