<#17418 Option to generate lockfiles lazily> New i...
# github-notifications
q
#17418 Option to generate lockfiles lazily New issue created by da-tubi Is your feature request related to a problem? Please describe. https://github.com/da-tubi/jupyterlab-best-practice I tried to make a jupyterlab-best-practice, the key is
bin/lab xyz
to launch the jupyterlab. But when I'm changing the Python dependencies, I have to re-generate the lockfiles. As we all know,
generate-lockfiles
is a slow operation. It is not a good idea for me to put
./pants generate-lockfiles --resolve=xyz
into
bin/lab
. Describe the solution you'd like I need a
--lazy
option for
generate-lockfiles
, like
Copy code
./pants generate-lockfiles --lazy --resolve=xyz
If the dependencies didn't change, it should be very fast. Describe alternatives you've considered None Additional context None pantsbuild/pants