(clojars-repo-only! {:keys [input-file output-file]
:or {input-file "pom.xml" output-file "pom.xml"}})
(set-patch-version!
{:keys [input-file output-file patch version-prefix]
:or {input-file "pom.xml" output-file "pom.xml" version-prefix "v"}
:as opts})
(set-version!
{:keys [input-file output-file version-prefix version]
:or {input-file "pom.xml" output-file "pom.xml" version-prefix "v"}})
(tree-edit zipper matcher)
Take a zipper, a function that matches a pattern in the tree, and a function that edits the current location in the tree. Examine the tree nodes in depth-first order, determine whether the matcher matches, and if so apply the editor.
Take a zipper, a function that matches a pattern in the tree, and a function that edits the current location in the tree. Examine the tree nodes in depth-first order, determine whether the matcher matches, and if so apply the editor.
(tree-editor zipper matcher editor)
Take a zipper, a function that matches a pattern in the tree, and a function that edits the current location in the tree. Examine the tree nodes in depth-first order, determine whether the matcher matches, and if so apply the editor.
Take a zipper, a function that matches a pattern in the tree, and a function that edits the current location in the tree. Examine the tree nodes in depth-first order, determine whether the matcher matches, and if so apply the editor.
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close