Merge pull request #5593 from zwhitchcox/patch-3

Remove dead code
This commit is contained in:
Paul O’Shannessy
2015-12-04 15:57:27 -08:00
-3
View File
@@ -16,18 +16,15 @@ module.exports = function() {
config.globalTransforms = config.globalTransforms || [];
config.plugins = config.plugins || [];
config.after = config.after || [];
config.paths = config.paths || [];
// create the bundle we'll work with
var entries = grunt.file.expand(config.entries);
var paths = grunt.file.expand(config.paths);
// Extract other options
var options = {
entries: entries,
debug: config.debug, // sourcemaps
standalone: config.standalone, // global
paths: paths,
};
var bundle = browserify(options);