mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
f75daab091
The `default` export is treated differently across tooling when transpiled to CommonJS - tools differ on whether `module.exports` represents the full module object or just its default export. Switch `src/` modules to named exports for tooling consistency. Fixes gh-5262 Closes gh-5292
10 lines
243 B
JavaScript
10 lines
243 B
JavaScript
import { jQuery } from "./core.js";
|
|
|
|
import "./attributes/attr.js";
|
|
import "./attributes/prop.js";
|
|
import "./attributes/classes.js";
|
|
import "./attributes/val.js";
|
|
|
|
// Return jQuery for attributes-only inclusion
|
|
export { jQuery, jQuery as $ };
|