Describe the bug
The most recent change to this and other packages like kapsule, accessor-fn, float-tooltip, and probably some more, broke my unit-tests pipeline that uses Jest. Jest support for ES Modules is still in experimental phase so things are expected to break.
Details:
/home/user/code/app/node_modules/float-tooltip/dist/float-tooltip.mjs:1
({"Object.<anonymous>":function(module,exports,require,__dirname,__filename,jest){import { select, pointer } from 'd3-selection';
^^^^^^
SyntaxError: Cannot use import statement outside a module
3 | import React, { useEffect, useRef, useState } from "react";
4 | import PropTypes from "prop-types";
> 5 | import Icicle from "icicle-chart";
| ^
6 | import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
7 | import {
at Runtime.createScriptFromCode (node_modules/jest-runtime/build/index.js:1605:14)
at Object.<anonymous> (node_modules/icicle-chart/dist/icicle-chart.common.js:12:15)
at Object.<anonymous> (lib/components/TreeMap/TreeMap.tsx:5:1)
at Object.<anonymous> (lib/components/TreeMap/TreeMap.stories.tsx:6:1)
at Object.<anonymous> (lib/components/TreeMap/TreeMap.test.tsx:5:1)
It's okay to migrate to ES Modules but if you are dropping support for CommonJS I believe that the best thing to do is to publish a new major version since this is most likely a breaking change.
Also, if someone knows how to fix this so that Jest is able to process these modules, please let me know.
Describe the bug
The most recent change to this and other packages like
kapsule,accessor-fn,float-tooltip, and probably some more, broke my unit-tests pipeline that uses Jest. Jest support for ES Modules is still in experimental phase so things are expected to break.It's okay to migrate to ES Modules but if you are dropping support for CommonJS I believe that the best thing to do is to publish a new major version since this is most likely a breaking change.
Also, if someone knows how to fix this so that Jest is able to process these modules, please let me know.