We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello folks!
I have a small feature request/bug report on something I am trying to do for cider-nrepl. I have a deps.edn with the following section:
cider-nrepl
deps.edn
{:aliases {:test-cljs {:main-opts ["-m" "nrepl.cmdline" "--middleware" "[cider.nrepl/cider-middleware,cider.piggieback/wrap-cljs-repl]"]}}
And cider-nrepl has a project.clj with the following :profiles key:
project.clj
:profiles
:test-cljs {:test-paths ["test/cljs"] :dependencies [[cider/piggieback "0.3.9"]]
It would be really awesome if somehow the end result could be:
{:aliases :test-cljs {:extra-paths ["test/cljs"] :extra-deps {cider/piggieback {:mvn/version "0.3.9"}} :main-opts ["-m" "nrepl.cmdline" "--middleware" "[cider.nrepl/cider-middleware,cider.piggieback/wrap-cljs-repl]"]}}
I could then generate the deps.edn my Clojure CLI launcher and ditch the :deps section that I currently have in there 😄
:deps
Thank you for your work on this lib, I see it is going to be very useful!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello folks!
I have a small feature request/bug report on something I am trying to do for
cider-nrepl
. I have adeps.edn
with the following section:And
cider-nrepl
has aproject.clj
with the following:profiles
key:It would be really awesome if somehow the end result could be:
I could then generate the
deps.edn
my Clojure CLI launcher and ditch the:deps
section that I currently have in there 😄Thank you for your work on this lib, I see it is going to be very useful!
The text was updated successfully, but these errors were encountered: