File tree 3 files changed +3
-2
lines changed
3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 6
6
* [ #256 ] ( https://github.com/clojure-emacs/refactor-nrepl/pull/256 ) ignore malformed artifact coordinates when fetching from Clojars.
7
7
* [ #264 ] ( https://github.com/clojure-emacs/refactor-nrepl/pull/264 ) less bandwidth used to fetch artifacts from Clojars
8
8
* [ #268 ] ( https://github.com/clojure-emacs/refactor-nrepl/pull/268 ) added support for fetching artifact versions from Clojars
9
+ * [ #271 ] ( https://github.com/clojure-emacs/refactor-nrepl/pull/271 ) improved shadow-cljs support
9
10
10
11
## 2.4.0
11
12
Original file line number Diff line number Diff line change 62
62
start (if (fs/directory? path-or-file-in-project)
63
63
path-or-file-in-project
64
64
(fs/parent path-or-file-in-project))
65
- names-at-root #{" project.clj" " build.boot" " build.gradle" " pom.xml" " deps.edn" }
65
+ names-at-root #{" project.clj" " build.boot" " build.gradle" " pom.xml" " deps.edn" " shadow-cljs.edn " }
66
66
known-root-file? (fn [^File f] (some (fn [known-root-name]
67
67
(.endsWith (.getCanonicalPath f)
68
68
known-root-name))
Original file line number Diff line number Diff line change 16
16
(defn- aliases-by-frequencies [libspecs]
17
17
(->> libspecs
18
18
(mapcat aliases) ; => [[str clojure.string] ...]
19
- (sort-by second)
19
+ (sort-by ( comp str second) )
20
20
(group-by first) ; => {str [[str clojure.string] [str clojure.string]] ...}
21
21
(map (comp seq frequencies second)) ; => (([[set clojure.set] 4] [set set] 1) ...)
22
22
(map (partial sort-by second >)) ; by decreasing frequency
You can’t perform that action at this time.
0 commit comments