Skip to content

Instantly share code, notes, and snippets.

@stuf
Created October 7, 2014 10:46
Show Gist options
  • Save stuf/bedaf1ddff1db8984c65 to your computer and use it in GitHub Desktop.
Save stuf/bedaf1ddff1db8984c65 to your computer and use it in GitHub Desktop.
gulp.task('browserify', function () {
gulp.src('./src/Application.coffee', { read: false })
.pipe(browserify({
transform: ['coffeeify'],
extensions: ['.coffee'],
debug: !gulp.env.production
}))
.on('error', logErr)
.pipe(rename('app.js'))
.pipe(gulp.dest('./dist/scripts'));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment