Add option to just output bundle to directory (skip zip)
See original GitHub issueIs your feature request related to a problem? Please describe.
I am using yarn bundle during my Docker build step to create a bundle that I copy into the run step container. I currently have to wait for the zip compression and then uncompress immediately anyway to copy the contents into the run container. There should be an option to skip the zip creation and JUST output to a directory.
Describe the solution you’d like
Add yarn bundle option to skip zip creation and output contents to a directory.
Issue Analytics
- State:
- Created 2 years ago
- Comments:6 (3 by maintainers)
Top Results From Across the Web
Output Management - webpack
Let's add some logic to our src/print.js file: ... the output as well, so that it will dynamically generate bundle names, based on...
Read more >Create zip file and ignore directory structure - Stack Overflow
-j Store just the name of a saved file (junk the path), and do not store directory names. By default, zip will store...
Read more >Python's zipfile: Manipulate Your ZIP Files Efficiently
In this guided tutorial, you'll learn how to manipulate ZIP files using Python's zipfile module from the standard library.
Read more >4 Ways to Make a Zip File - wikiHow
1. Create a folder. The quickest way to create a zip file is to place all of the files that you want to...
Read more >Create a single file for application deployment - .NET
On Linux, the runtime is prelinked into the bundle and only application native libraries are deployed to the same directory as the single...
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 Free
Top 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

seems to work great, thanks for the super quick update!
I’ve almost finished a PR for this, and removing the zip with
--no-compresstakes about 90% off the bundle time.