Skip to content

Commit 9ec09c3

Browse files
authored
Build: Fix the regex parsing AMD var-modules (#4389)
The previous regex caused the final jQuery binary to have syntax errors for var-modules with names starting with "return". For example, the following module wouldn't work when the file is named `returnTrue.js`: ```js define( function() { "use strict"; return function returnTrue() { return true; }; } ); ``` Closes gh-4389
1 parent 3527a38 commit 9ec09c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build/tasks/build.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ module.exports = function( grunt ) {
6565
if ( /.\/var\//.test( path.replace( process.cwd(), "" ) ) ) {
6666
contents = contents
6767
.replace(
68-
/define\([\w\W]*?return/,
68+
/define\(\s*(["'])[\w\W]*?\1[\w\W]*?return/,
6969
"var " +
7070
( /var\/([\w-]+)/.exec( name )[ 1 ] ) +
7171
" ="

0 commit comments

Comments
 (0)