]> source.dussan.org Git - jquery.git/commit
Build: Fix the regex parsing AMD var-modules (#4389)
authorMichał Gołębiowski-Owczarek <m.goleb@gmail.com>
Mon, 13 May 2019 19:55:45 +0000 (21:55 +0200)
committerGitHub <noreply@github.com>
Mon, 13 May 2019 19:55:45 +0000 (21:55 +0200)
commit9ec09c3b4aa5182c2a8b8f51afb861b685a4003c
tree0123d4ccf75975fae8cf92aa9c61d2a81e8c04b2
parent3527a3840585e6a359cd712591c9c57398357b9b
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
build/tasks/build.js