From f75daab09102a4dd5107deadb55d4a169f86254a Mon Sep 17 00:00:00 2001 From: Michał Gołębiowski-Owczarek Date: Tue, 12 Sep 2023 02:27:19 +0200 Subject: 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 --- src/effects/animatedSelector.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/effects/animatedSelector.js') diff --git a/src/effects/animatedSelector.js b/src/effects/animatedSelector.js index 327956f72..0e0b377f1 100644 --- a/src/effects/animatedSelector.js +++ b/src/effects/animatedSelector.js @@ -1,4 +1,4 @@ -import jQuery from "../core.js"; +import { jQuery } from "../core.js"; import "../selector.js"; import "../effects.js"; -- cgit v1.2.3