Created
February 4, 2014 06:01
-
-
Save rozap/8798837 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 browserify = require('gulp-browserify'); | |
// Basic usage | |
gulp.task('scripts', function() { | |
// Single entry point to browserify | |
gulp.src('lib/public/js/src/app.js') | |
.pipe(browserify({ | |
insertGlobals: false, | |
debug: true | |
})) | |
.pipe(gulp.dest('lib/public/js')) | |
}); | |
gulp.task('default', ['scripts']); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment