When using Python with pip we can specify an environment variable which says to also download the packages to a cache location: "How do I install from a local cache with pip?".
export PIP_DOWNLOAD_CACHE=$HOME/.pip_download_cache
pip install numpy
How can we do the same for bundler as well?