Skip to content

Commit

Permalink
properly apply :closure-output-charset in all cases
Browse files Browse the repository at this point in the history
  • Loading branch information
thheller committed Apr 7, 2019
1 parent 72fd860 commit 0461774
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main/shadow/build/closure.clj
Original file line number Diff line number Diff line change
Expand Up @@ -1280,7 +1280,9 @@
(when-let [lo (get-in state [:compiler-options :language-out])]
{:language-out lo})
(when-let [ofs (get-in state [:compiler-options :output-feature-set])]
{:output-feature-set ofs})))
{:output-feature-set ofs})
(when-let [charset (get-in state [:compiler-options :closure-output-charset])]
{:closure-output-charset charset})))

(def cache-affecting-options
[[:compiler-options :source-map-use-fs-paths]
Expand Down

0 comments on commit 0461774

Please sign in to comment.