From b15c80696c9ddcaddcf3b997a8d2617ebe22a447 Mon Sep 17 00:00:00 2001 From: zwhitchcox Date: Thu, 3 Dec 2015 19:50:36 -0500 Subject: [PATCH] Remove dead code This isn't used anywhere in React --- grunt/tasks/browserify.js | 3 --- 1 file changed, 3 deletions(-) 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);