diff options
Diffstat (limited to 'build/tasks/build.js')
-rw-r--r-- | build/tasks/build.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/build/tasks/build.js b/build/tasks/build.js index d8cea4c52..cf5fc9b6f 100644 --- a/build/tasks/build.js +++ b/build/tasks/build.js @@ -68,9 +68,9 @@ module.exports = function( grunt ) { // Remove CommonJS-style require calls // Keep an ending semicolon contents = contents - .replace( /(?:\s+\w+ = )?\s*require\(\s*(")[\w\.\/]+\1\s*\)([,;])/g, - function( all, quote, commaSemicolon ) { - return commaSemicolon === ";" ? ";" : ""; + .replace( /(\s+\w+ = )?\s*require\(\s*(")[\w\.\/]+\2\s*\)([,;])/g, + function( all, isVar, quote, commaSemicolon ) { + return isVar && commaSemicolon === ";" ? ";" : ""; }); // Remove empty definitions |