-
Notifications
You must be signed in to change notification settings - Fork 562
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
fix: 🐛 UMD bundle is missing local source dependencies #138
Conversation
💖 Thanks for opening this pull request! 💖 Please follow the contributing guidelines. And we use semantic commit messages to streamline the release process. Examples of commit messages with semantic prefixes:
Things that will help get your PR across the finish line:
We get a lot of pull requests on this repo, so please be patient and we will get back to you as soon as we can. |
Current UMD bundle contains several invalid "require" statements (causing it to fail when used with an AMD loader): * require("./cloneNode") * require("./embedImages") * require("./embedWebFonts") * require("./createSvgDataURL") * require("./applyStyleWithOptions") * require("./util"); Rather than bundling the "commonjs" generated sources, this change lets rollup bundle via ES6 modules (which it prefers). Signed-off-by: Gordon Smith <GordonJSmith@gmail.com>
Hiya! |
Bump |
👋 @GordonSmith Congrats on merging your first pull request! 🎉🎉🎉 |
# [1.7.0](v1.6.2...v1.7.0) (2021-07-23) ### Bug Fixes * 🐛 UMD bundle is missing local source dependencies ([#138](#138)) ([67be116](67be116)) * 🐛 fontAwesome icons are not included in the resulting image on safari ([#131](#131)) ([c6ebb34](c6ebb34)) ### Features * ✨ Add viewBox attribute to SVG ([#146](#146)) ([b4ac1d8](b4ac1d8))
🎉 This PR is included in version 1.7.0 🎉 The release is available on: |
Description
Current UMD bundle contains several invalid "require" statements
(causing it to fail when used with an AMD loader):
Rather than bundling the "commonjs" generated sources, this change lets rollup bundle via ES6
modules (which it prefers).
Motivation and Context
Types of changes
Self Check before Merge