Skip to content

Commit 6ba8170

Browse files
author
dnolen
committed
CLJS-1595: Update Closure Compiler
1 parent 1e794f0 commit 6ba8170

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

pom.template.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
<dependency>
3131
<groupId>com.google.javascript</groupId>
3232
<artifactId>closure-compiler</artifactId>
33-
<version>v20151216</version>
33+
<version>v20160315</version>
3434
</dependency>
3535
<dependency>
3636
<groupId>org.clojure</groupId>

project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
[org.clojure/data.json "0.2.6"]
1313
[org.clojure/tools.reader "1.0.0-beta1"]
1414
[org.clojure/google-closure-library "0.0-20151016-61277aea"]
15-
[com.google.javascript/closure-compiler "v20151216"]
15+
[com.google.javascript/closure-compiler "v20160315"]
1616
[org.mozilla/rhino "1.7R5"]]
1717
:profiles {:1.6 {:dependencies [[org.clojure/clojure "1.6.0"]]}
1818
:uberjar {:aot :all :main clojure.main}}

script/bootstrap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
set -e
44

55
CLOJURE_RELEASE="1.8.0"
6-
CLOSURE_RELEASE="20151216"
6+
CLOSURE_RELEASE="20160315"
77
DJSON_RELEASE="0.2.6"
88
GCLOSURE_LIB_RELEASE="0.0-20151016-61277aea"
99
RHINO_RELEASE="1_7R5"

src/main/clojure/cljs/closure.clj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -244,8 +244,7 @@
244244
(setExtraAnnotationNames (map name (:closure-extra-annotations opts)))))
245245

246246
(. compiler-options
247-
(setOutputCharset (:closure-output-charset opts "UTF-8"))
248-
#_(setOutputCharset (to-charset (:closure-output-charset opts "UTF-8"))) ;; only works > 20160125 Closure Compiler
247+
(setOutputCharset (to-charset (:closure-output-charset opts "UTF-8"))) ;; only works > 20160125 Closure Compiler
249248
)
250249

251250
compiler-options)

0 commit comments

Comments
 (0)