We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
its not possible to require/import circos ....
in circos.js, add this on the end:
module.exports = Circos;
this will allow to import like this: import Circos from 'circos/dist/circos'
import Circos from 'circos/dist/circos'
to allow direct inclussion add index.js directly in the circos folder with this content: (first change is still needed)
module.exports = require('./dist/circos');
now its possible to include like import Circos from 'circos';
import Circos from 'circos';
The text was updated successfully, but these errors were encountered:
Yes. It solved my problem.
Sorry, something went wrong.
8a16002
Thanks @ppisljar for the feedback. It is now available for versions 2.0.5+
No branches or pull requests
its not possible to require/import circos ....
in circos.js, add this on the end:
module.exports = Circos;
this will allow to import like this:
import Circos from 'circos/dist/circos'
to allow direct inclussion add index.js directly in the circos folder with this content: (first change is still needed)
now its possible to include like
import Circos from 'circos';
The text was updated successfully, but these errors were encountered: