Skip to content

Commit 40c3abd

Browse files
authored
Build:Event: Make sure all source modules' exports are used (#4648)
To achieve that, use `eslint-plugin-import`'s `no-unused-modules` rule. Also, explicitly import `event/trigger.js` from `jquery.js`; so far it was only imported from ajax.js, making it mistakenly skipped in the `custom:slim,-deprecated` build.
1 parent 0b676ae commit 40c3abd

File tree

7 files changed

+5
-9
lines changed

7 files changed

+5
-9
lines changed

src/.eslintrc.json

+4
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@
1313
"rules": {
1414
"import/extensions": [ "error", "always" ],
1515
"import/no-cycle": "error",
16+
"import/no-unused-modules": [ "error", {
17+
"unusedExports": true,
18+
"ignoreExports": [ "src/*.js" ]
19+
} ],
1620
"indent": [ "error", "tab", {
1721
"outerIIFEBody": 0
1822
} ]

src/core/init.js

-2
Original file line numberDiff line numberDiff line change
@@ -118,5 +118,3 @@ init.prototype = jQuery.fn;
118118

119119
// Initialize central reference
120120
rootjQuery = jQuery( document );
121-
122-
export default init;

src/core/parseXML.js

-2
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,3 @@ jQuery.parseXML = function( data ) {
2020
}
2121
return xml;
2222
};
23-
24-
export default jQuery.parseXML;

src/core/var/rhtml.js

-1
This file was deleted.

src/event/trigger.js

-2
Original file line numberDiff line numberDiff line change
@@ -190,5 +190,3 @@ jQuery.fn.extend( {
190190
}
191191
}
192192
} );
193-
194-
export default jQuery;

src/jquery.js

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import "./queue.js";
1111
import "./queue/delay.js";
1212
import "./attributes.js";
1313
import "./event.js";
14+
import "./event/trigger.js";
1415
import "./manipulation.js";
1516
import "./manipulation/_evalUrl.js";
1617
import "./wrap.js";

src/manipulation/_evalUrl.js

-2
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,3 @@ jQuery._evalUrl = function( url, options, doc ) {
2222
}
2323
} );
2424
};
25-
26-
export default jQuery._evalUrl;

0 commit comments

Comments
 (0)