diff options
author | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2023-09-12 02:27:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-12 02:27:19 +0200 |
commit | f75daab09102a4dd5107deadb55d4a169f86254a (patch) | |
tree | 71e7b9076d61d7aed7569f51c57b8651e9c16bfc /src/manipulation.js | |
parent | 42e50f8c21fbfd08092ad81add4ac38982ef0841 (diff) | |
download | jquery-f75daab09102a4dd5107deadb55d4a169f86254a.tar.gz jquery-f75daab09102a4dd5107deadb55d4a169f86254a.zip |
Core: Use named exports in `src/`
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
Diffstat (limited to 'src/manipulation.js')
-rw-r--r-- | src/manipulation.js | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/src/manipulation.js b/src/manipulation.js index d3ee1130f..0a7209412 100644 --- a/src/manipulation.js +++ b/src/manipulation.js @@ -1,17 +1,17 @@ -import jQuery from "./core.js"; -import isAttached from "./core/isAttached.js"; -import isIE from "./var/isIE.js"; -import push from "./var/push.js"; -import access from "./core/access.js"; -import rtagName from "./manipulation/var/rtagName.js"; -import wrapMap from "./manipulation/wrapMap.js"; -import getAll from "./manipulation/getAll.js"; -import domManip from "./manipulation/domManip.js"; -import setGlobalEval from "./manipulation/setGlobalEval.js"; -import dataPriv from "./data/var/dataPriv.js"; -import dataUser from "./data/var/dataUser.js"; -import acceptData from "./data/var/acceptData.js"; -import nodeName from "./core/nodeName.js"; +import { jQuery } from "./core.js"; +import { isAttached } from "./core/isAttached.js"; +import { isIE } from "./var/isIE.js"; +import { push } from "./var/push.js"; +import { access } from "./core/access.js"; +import { rtagName } from "./manipulation/var/rtagName.js"; +import { wrapMap } from "./manipulation/wrapMap.js"; +import { getAll } from "./manipulation/getAll.js"; +import { domManip } from "./manipulation/domManip.js"; +import { setGlobalEval } from "./manipulation/setGlobalEval.js"; +import { dataPriv } from "./data/var/dataPriv.js"; +import { dataUser } from "./data/var/dataUser.js"; +import { acceptData } from "./data/var/acceptData.js"; +import { nodeName } from "./core/nodeName.js"; import "./core/init.js"; import "./traversing.js"; @@ -341,4 +341,4 @@ jQuery.each( { }; } ); -export default jQuery; +export { jQuery, jQuery as $ }; |