Remove UMD format from default build outputs
See original GitHub issueIt’s really really slow to build for UMD and very very few modules really need to have a standalone <script>
tag-ready output.
Thoughts @sw-yx ?
Issue Analytics
- State:
- Created 4 years ago
- Comments:5 (3 by maintainers)
Top Results From Across the Web
Remove UMD format from default build outputs #120 - GitHub
I use umd dev/prod bundles to track library size with bundled dependencies for development and production. All reactions.
Read more >Vue-CLI: Remove '.umd' from filename in dist folder
I'm generating a library with Vue CLI 4.4: vue-cli-service build --target lib --formats=umd,umd-min --name example main.js.
Read more >Output - webpack
To make UMD build available on both browsers and Node.js, set output.globalObject option to 'this' . Defaults to self for Web-like targets.
Read more >Bundling Your JavaScript Library with Rollup | Risan Bagja
Rollup offers five output formats for your bundle: ... Delete generated files $ rm bundle.js amd.js umd.js es.js iife.js # Move main.js to ......
Read more >The Ultimate Guide to Getting Started with the Rollup.js ...
Learn how to use this JavaScript bundler with easy-to-follow examples.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Maybe
tsdx create
should have a--umd
flag that adds theumd:main
entry topackage.json
. Thentsdx build
can just checkpackage.json
to know when to build the UMD bundle.Not yet.