We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 616966c commit b9b1a27Copy full SHA for b9b1a27
1 file changed
src/main/clojure/cljs/closure.clj
@@ -2659,6 +2659,8 @@
2659
(spit outfile (slurp (io/resource (str "cljs/bootstrap_" target-str ".js")))))))
2660
2661
(defn compile-inputs
2662
+ "Compile inputs and all of their transitive dependencies including JS modules,
2663
+ libs, and foreign libs. Duplicates the pipeline of build."
2664
[inputs opts]
2665
(env/ensure
2666
(let [sources (-> inputs (add-dependency-sources opts))
@@ -2672,7 +2674,8 @@
2672
2674
sources)))
2673
2675
2676
(defn compile-ns
- "Compiles a namespace and all of its transitive dependencies."
2677
+ "Compiles a namespace and all of its transitive dependencies.
2678
+ See compile-inputs."
2679
[ns opts]
2680
(compile-inputs (find-sources ns opts) opts))
2681
0 commit comments