We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c177de0 commit e6dbedcCopy full SHA for e6dbedc
.gitignore
@@ -24,4 +24,5 @@ install.cmd
24
/.cljs_node_repl/
25
/out/
26
/.lein-env
27
-.inline-deps
+.inline-deps
28
+/.artifacts-cache
src/refactor_nrepl/artifacts.clj
@@ -40,8 +40,6 @@
40
;; Ignore artifact if not readable. See #255
41
nil)))
42
43
-(def stuff 33)
44
-
45
(defn get-clojars-artifacts!
46
"Returns a vector of [[some/lib \"0.1\"]...]."
47
[]
@@ -106,7 +104,8 @@
106
104
(defn artifact-list
107
105
[{:keys [force]}]
108
(when (or (= force "true") (stale-cache?))
109
- (update-artifact-cache!))
+ (update-artifact-cache!)
+ (spit ".artifacts-cache" @artifacts))
110
(->> @artifacts keys list*))
111
112
(defn artifact-versions
0 commit comments