Function: cider--shadow-parse-builds
cider--shadow-parse-builds is a byte-compiled function defined in
cider.el.
Signature
(cider--shadow-parse-builds HASH)
Documentation
Parses the build names of a shadow-cljs.edn HASH map.
The default options of browser-repl and node-repl are also included.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider.el
(defun cider--shadow-parse-builds (hash)
"Parses the build names of a shadow-cljs.edn HASH map.
The default options of `browser-repl' and `node-repl' are also included."
(let* ((builds (when (hash-table-p hash)
(gethash :builds hash)))
(build-keys (when (hash-table-p builds)
(hash-table-keys builds))))
(append build-keys '(browser-repl node-repl))))