We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc83e6c commit 22a80aaCopy full SHA for 22a80aa
1 file changed
src/powerlaces/boot_cljs_devtools.clj
@@ -29,10 +29,10 @@
29
(map first)
30
set)
31
missing (set/difference (get deps lib) current)]
32
- (if (seq missing)
33
- (util/warn (str "You are missing necessary dependencies for boot-cljs-devtools.\n"
34
- "Please add the following dependencies to your project:\n"
35
- (str/join "\n" missing) "\n")))))
+ (assert (not (seq missing))
+ (str "You are missing necessary dependencies for boot-cljs-devtools.\n"
+ "Please add the missing dependencies to your project:\n"
+ (str/join "\n" missing) "\n"))))
36
37
(defn- relevant-cljs-edn [prev fileset ids]
38
(let [relevant (map #(str % ".cljs.edn") ids)
0 commit comments