You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description:
During local dev we use :local/root in the deps.edn file for libs we want to override.
Problem:
Editing deps.edn manually when checking out a branch is tedious. Having a command for this in neil would enable automation (such as keybindings) to make this smoother.
Example:
$ cat deps.edn
{:deps {io.github.rads/deps-info {:git/url "https://github.com/rads/deps-info"
:git/tag "v0.1.2"
:git/sha "440af72"}}}
$ neil dep local deps-info ../deps-info
$ cat deps.edn
{:deps {io.github.rads/deps-info {:local/root "../deps-info"}
#_{:git/url "https://github.com/rads/deps-info"
:git/tag "v0.1.2"
:git/sha "440af72"}}}
Questions:
Should it support toggling on/off or just set it once and let the user manage the undo part?
The text was updated successfully, but these errors were encountered:
Description:
During local dev we use
:local/root
in thedeps.edn
file for libs we want to override.Problem:
Editing
deps.edn
manually when checking out a branch is tedious. Having a command for this inneil
would enable automation (such as keybindings) to make this smoother.Example:
Questions:
The text was updated successfully, but these errors were encountered: