This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2018-10-27
Channels
- # announcements (1)
- # beginners (71)
- # braveandtrue (4)
- # cider (1)
- # cljs-dev (4)
- # cljsrn (8)
- # clojure (111)
- # clojure-italy (5)
- # clojure-spec (22)
- # clojure-uk (8)
- # clojurescript (80)
- # cryogen (14)
- # cursive (7)
- # data-science (1)
- # datomic (25)
- # dirac (1)
- # figwheel-main (4)
- # fulcro (13)
- # incanter (1)
- # off-topic (6)
- # other-languages (3)
- # pathom (11)
- # portkey (5)
- # re-frame (13)
- # reagent (3)
- # reitit (24)
- # ring-swagger (7)
- # shadow-cljs (63)
- # spacemacs (3)
- # specter (4)
- # tools-deps (9)
https://maven.apache.org/shared/maven-artifact-transfer/apidocs/index.html if someone wanted to write a tools.release, the maven library exists to do that š
I've got a complete first pass of "ednup" a tool for rewriting edn without losing whitespace. It's not great, but it is definitely sufficient to handle resolve tags! Don't expect this to work beyond this commit, I'm going to clean up with new namespaces, but:
{:paths ["src"]
;; cool comment
:deps
{potemkin {:mvn/version "0.1"}
tools.deps.alpha {:git/url ""
;; totally rad
:tag "tools.deps.alpha-0.5.460"}
;; woah dude
tools.deps.alphax {:git/url ""
:tag "tools.deps.alpha-0.5.460"
;; zoom
:sha nil}}}
Running
~/src/github.com/SevereOverfl0w/clj-resolve-tags master* 13s
āÆ clj -Sdeps '{:deps {resolve-tags {:git/url "" :sha "44315f501e3b7fba40961563ba7fcfd0441225fa"}}}' -m resolve-tags not-deps.edn
Results in
{:paths ["src"]
;; cool comment
:deps
{potemkin {:mvn/version "0.1"}
tools.deps.alpha {:git/url ""
;; totally rad
:tag "tools.deps.alpha-0.5.460"
:sha "ca2aa1eb320687ce940a4f142c8d1af8f9a018bc"}
;; woah dude
tools.deps.alphax {:git/url ""
:tag "tools.deps.alpha-0.5.460"
;; zoom
:sha "ca2aa1eb320687ce940a4f142c8d1af8f9a018bc"}}}
Is there already an issue suggesting the addition of a "show version of clj/clojure and exit" option to clj
and/or clojure
? If not, would one be welcome? Seems useful in some debug interactions between people.
Got it. thx. Didn't realize that, and didn't see the more traditional -v
or --version
command line options.
I don't think so. I didn't see them.
I've also been surprised by the lack of -v
/ --version
options, FWIW.