/** * A wrapper around graphie.js and interactive.js to make sure interactive.js * is always required at the same time as graphie.js. This is because * interactive.js has side effects that are hard to see (it adds things to * `Graphie.prototype`), so someone might forget to require interactive.js. * * To use the utilities exported from interactive.js, require that file * itself. */ import GraphUtils from "./graphie"; import "./interactive"; export default GraphUtils;