diff --git a/grunt/tasks/browserify.js b/grunt/tasks/browserify.js index 6ae1b8dfc4..3c9b2c089b 100644 --- a/grunt/tasks/browserify.js +++ b/grunt/tasks/browserify.js @@ -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);