File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed
Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 187187 (apply closure/output-unoptimized opts sources))
188188
189189(defn build
190- " Given a source which can be compiled, produce runnable JavaScript."
190+ " Given compiler options, produce runnable JavaScript. An optional source
191+ parameter may be provided."
192+ ([opts]
193+ (build nil opts))
191194 ([source opts]
192195 (build source opts
193196 (if-not (nil? env/*compiler*)
Original file line number Diff line number Diff line change 26952695 (compile-inputs (find-sources ns opts) opts))
26962696
26972697(defn build
2698- " Given a source which can be compiled, produce runnable JavaScript."
2698+ " Given compiler options, produce runnable JavaScript. An optional source
2699+ parameter may be provided."
2700+ ([opts]
2701+ (build nil opts))
26992702 ([source opts]
27002703 (build source opts
27012704 (if-not (nil? env/*compiler*)
You can’t perform that action at this time.
0 commit comments