From 61c1bf0a41157bdfbc06b060e6f6ef34db72065a Mon Sep 17 00:00:00 2001 From: Thomas Aylott Date: Thu, 14 Nov 2013 13:50:23 -0500 Subject: [PATCH] fixes browserify task transforms support --- grunt/tasks/browserify.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grunt/tasks/browserify.js b/grunt/tasks/browserify.js index d43c0841f8..c83ed7e65c 100644 --- a/grunt/tasks/browserify.js +++ b/grunt/tasks/browserify.js @@ -46,7 +46,7 @@ module.exports = function() { }; // TODO: make sure this works, test with this too - config.transforms.forEach(bundle.transform, this); + config.transforms.forEach(bundle.transform, bundle); // Actually bundle it up var _this = this;