-
Notifications
You must be signed in to change notification settings - Fork 743
New issue
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
Add support for including external scripts/libraries #165
Comments
Maybe we can use https://unpkg.com/ to achieve that? |
Possibly? What wondering how it would be able to handle pkgs that don't produce a built file and use require though. This was an issue for babel plugins in the repl unless it auto bundles them like in https://wzrd.in/ (browserify as a service) |
You load them from bundle.run which is a Rollup/Browserify as a service with a CDN. |
how exactly do you use bundle.run in astexplorer? |
I think this could be easily solved if the plugin/transform gets loaded as esm instead of transforming it to commonjs. import * as m from "https://esm.sh/@codemod/matchers@1.7.0"; |
Sometimes I wish I could use lodash when experimenting with a plugin.
The text was updated successfully, but these errors were encountered: