We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
find-classpath-lib
1 parent 4eebd45 commit 9cddd75Copy full SHA for 9cddd75
src/clj/cljs/js_deps.clj
@@ -303,5 +303,9 @@ JavaScript library containing provide/require 'declarations'."
303
(let [{:keys [provides] :as lib-info} (library-graph-node lib-resource)]
304
(if (some #{(name lib)} provides)
305
lib-info
306
- (println (format "WARNING: JavaScript file found on classpath for library `%s`, but does not contain a corresponding `goog.provide` declaration: %s"
307
- lib lib-resource))))))
+ (binding [*out* *err*]
+ (println
308
+ (format
309
+ (str "WARNING: JavaScript file found on classpath for library `%s`, "
310
+ "but does not contain a corresponding `goog.provide` declaration: %s")
311
+ lib lib-resource)))))))
0 commit comments