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 browserify = require('browserify'); | |
| var gulp = require('gulp'); | |
| var source = require('vinyl-source-stream'); | |
| var through = require('through'); | |
| var libs = ['jquery', 'bootstrap']; | |
| gulp.task('app-bundle', function() { | |
| var appBundler = browserify(['./app.js']); | |
| libs.forEach(function(lib) { |
NewerOlder