You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
👋 — Hi there! I was hoping to be able to leverage rdflib to visualize some modeling problems I’m working on in a browser. However, when I went to get started, I couldn’t get it loading via the exported /esm scripts. E.g., this doesn’t work:
This will complain about @babel not existing, but I don’t believe an import map declaration to map the @babel bare module specifier to a well-defined resolution destination will work… If you look in https://www.unpkg.com/[email protected]/esm/index.js, you’ll see lines like:
👋 — Hi there! I was hoping to be able to leverage
rdflib
to visualize some modeling problems I’m working on in a browser. However, when I went to get started, I couldn’t get it loading via the exported/esm
scripts. E.g., this doesn’t work:This will complain about
@babel
not existing, but I don’t believe an import map declaration to map the@babel
bare module specifier to a well-defined resolution destination will work… If you look inhttps://www.unpkg.com/[email protected]/esm/index.js
, you’ll see lines like:But
…createClass
isn’t a real thing. You can find…createClass.js
(https://www.unpkg.com/@babel/[email protected]/helpers/createClass.js), but because there’s no.js
, the browser tries to lookup (https://www.unpkg.com/@babel/[email protected]/helpers/createClass). And… that doesn’t exist.In other words, this doesn’t really help to do the following:
❤️ — Thanks for taking a look!
The text was updated successfully, but these errors were encountered: