We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03455b4 commit aab9710Copy full SHA for aab9710
src/main/clojure/cljs/closure.clj
@@ -1741,13 +1741,14 @@
1741
out-file (io/file output-to)]
1742
(util/mkdirs out-file)
1743
(spit out-file
1744
- (as-> (elide-strict source opts) source
+ (as-> source source
1745
(if (= name :cljs-base)
1746
(add-header opts source)
1747
source)
1748
(if fdeps-str
1749
(str fdeps-str "\n" source)
1750
1751
+ (elide-strict source opts)
1752
(if sm-name
1753
(add-source-map-link
1754
(assoc opts
0 commit comments