We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4f2ac6 commit 0fcc8fdCopy full SHA for 0fcc8fd
1 file changed
src/main/clojure/cljs/closure.clj
@@ -2228,8 +2228,13 @@
2228
2229
(or (:closure-defines opts) (shim-process? opts))
2230
(update :closure-defines normalize-closure-defines)
2231
+
2232
(:browser-repl opts)
- (update-in [:preloads] (fnil conj []) 'clojure.browser.repl.preload))
2233
+ (update-in [:preloads] (fnil conj []) 'clojure.browser.repl.preload)
2234
2235
+ (and (contains? opts :modules)
2236
+ (not (contains? opts :stable-names)))
2237
+ (assoc :stable-names true))
2238
{:keys [libs foreign-libs externs]} (get-upstream-deps)
2239
emit-constants (or (and (= optimizations :advanced)
2240
(not (false? (:optimize-constants opts))))
0 commit comments